{
"name": "товар1",
"price": 15000,
"quantity": 7
}{
"name": "товар1",
"price": 15000,
"quantity": 7
},
{
"name": "товар2",
"price": 25500,
"quantity": 2
}{
"list" : [
{
"name": "товар1",
"price": 15000,
"quantity": 7
},
{
"name": "товар2",
"price": 25500,
"quantity": 2
},
{
"name": "товар3",
"price": 5000,
"quantity": 5
}
]
} {
path: '/admin',
component: {
render (c) { return c('router-view') }
},
meta: {
layout: 'admin-layout',
title: 'Админ панель',
},
children: [
{
path: '',
redirect: { path: '/admin/category' },
},
{
path: 'category',
name: 'category',
component: () => import('../components/pages/admin/Category'),
meta: {
title: 'Категория',
layout: 'admin-layout',
},
}
],
children: [
{
path: 'products',
name: 'products',
component: () => import('../components/pages/admin/Products'),
meta: {
title: 'Продукты',
layout: 'admin-layout',
},
}
]
},