<highcharts v-if="DATA.length" :key="DATA.length" :constructorType="'stockChart'" class="hc" :options="chartOptions" ref="chart"></highcharts>
<tbody class="s" v-for="(items, customer, idx) in grouped()">
<tr v-if="isModalCustomerVisible && idx === 0">
<customer-edit-form />
повесить доп. условие idx === 0
. В зависимости от того, нужно ли всю <tr>
убирать или только <customer-edit-form />
)<router-view />
повесьте обработчик:<router-view @update-cart="updateCart" />
updateCart(e) {
this.order.push(e); // запушится {message:'dauren'}
},
{{ dataGet.slice(0, offset) }}
offset: 10
<Knopka v-if="offset < dataGet.length" @click="showMore" />
showMore(){
this.offset += 10
}
get('https://lala.ru/?offset=' + this.offset)
.then(response => this.dataGet = [...this.dataGet, ...response.data])
{
name: 'myHomePage',
path: '/',
component: HomePage,
meta: { sideBar: true }
},
{
name: 'Products',
path: '/',
component: ProductsPage,
meta: { sideBar: false }
},
<Menu />
, то:<Menu v-if="$route.meta && $route.meta.sideBar" />
#menu + .myRouteWrapper{
width: calc(100% - var(--menuWidth))
}
<router-view :key="this.$route.name"></router-view>