.q-expansion-item–expanded {
color: green;
}.
G
Posts made by Geita
-
RE: Q-expansion-item conditional class on expanded item
-
Open expantion item trough router-link
Not a quasar spesific question but. How would i go about if i want to open an expantion item on page 2, when i click a router link to page 2 on page 1?
-
Select and router links
Are there an easy way to have router-links in an q-select, autocomplete and so on ? I want to list child-pages in a q-select and load them into router-view.
<template>
<div>
<q-select
filled
v-model=“model”
:options=“options”
map-options
/><router-view></router-view>
</div>
</template>export default {
data () {
return {
model: null,
options: [
{
label: ‘Google’,
value: ‘goog’,
to:’/child-page or href:’/childpage’
},