{
path: 'store/:id?',
name: 'UserStore',
component: () => import('@/views/user/Store.vue'),
},
if (this.$route.params.id) {
result = await this.$api.store.get(this.$route.params.id)
} else {
result = await this.$api.store.fetch()
}
<v-products
inline-template
:products="products"
:selected=[116,324,113,144,119,120,150,453,395,140,449,146,125,425,126,154,143,461,155,394,77,138,459,503,508,130,133,505,115,457,134,455,450]>
<div
class="products js-product-list"
:class="!productsLoaded && 'is-loading'"
v-cloak
>
<div class="container">
<div class="products__header js-products-header">
<h1 class="products__title">Сеты</h1>
</div>
Module build failed (from ./node_modules/babel-loader/lib/index.js):
SyntaxError: /Users/dn/Desktop/my_fourth_arigato/src/components/categories/pizza.vue: Unexpected reserved word 'await'. (74:19)
72 | console.log("123")
73 | if (this.$router.params.id) {
> 74 | result = await this.$api.store.get(this.$router.params.id)
| ^
75 | } else {
76 | result = await this.$api.store.fetch()
77 | }
async initialize () {
if (this.$route.params.id) {
this.showBreadcrumbs = true
this.headers = [
{
text: nameCol,
align: 'start',
sortable: false,
value: 'title',
},
{ text: createdCol, value: 'created' },
{ text: actionCol, value: 'actions', sortable: false },
]
}
// this.bkItems.push(this.bkRoot);
var result
if (this.$route.params.id) {
result = await this.$api.store.get(this.$route.params.id)
} else {
result = await this.$api.store.fetch()
}
this.desserts = []
if (result.breadcrumbs) {
this.bkItems = result.breadcrumbs
}
if (result.stores) {
result.stores.forEach((element) => {
if (element.created !== 0 || element.created !== '') {
const utc = new Date(element.created * 1000)
const str = moment(utc).format('YYYY-MM-DD')
element.created = str
} else element.created = ''
if (element.openDate !== 0) {
console.log(element.openDate)
const utc = new Date(element.openDate * 1000)
const str = moment(utc).format('YYYY-MM-DD')
element.openDate = str
} else element.openDate = ''
if (element.modified !== 0 || element.modified !== '') {
const utc = new Date(element.modified * 1000)
const str = moment(utc).format('YYYY-MM-DD')
element.modified = str
} else element.modified = ''
})
this.desserts = result.stores
}
},
<template> <ul> <li v-for="products in productsOnSale" :key="product._id"> {{ product.name }} </li> </ul></template><script>export default { data() { return { products: [], } }, computed: { productsOnSale: function () { return this.products.filter((product) => product.onSale) }, },}</script>
myActionFilter(category) {
this.sortedProducts = [];
let vm = this;
this.PRODUCTS.map(function (item) {
if (item.category === category.name) {
vm.sortedProducts.push(item);
productsOnSale: function () {
return this.PRODUCTS.filter((product) => product.type)
},