m3-academy-template-vtexio/storefront/store/blocks/partials/header/dynamic-menu.jsonc

75 lines
2.6 KiB
Plaintext
Raw Normal View History

2022-08-11 13:06:07 +00:00
{
"dynamic-menu": {
"props": {
"isMobile": false,
"items": [
{
2022-08-11 13:33:06 +00:00
"MenuItemProps": {
"iconSrc": "string",
"title": "Teste",
"href": "/",
"internal": true,
"content": "Teste",
"items": [
{
"SubMenuItemProps": {
"iconSrc": "string",
"title": "Teste",
"href": "/",
"internal": true,
"content": "Teste"
}
},
{
"SubMenuItemProps": {
"iconSrc": "string",
"title": "Inverno 2021",
"href": "/",
"internal": true,
"content": "Inverno 2021"
}
}
]
}
2022-08-11 13:06:07 +00:00
}
]
}
},
"dynamic-menu#mobile": {
"props": {
2022-08-11 13:33:06 +00:00
"isMobile": true,
"items": [
{
"MenuItemProps": {
"iconSrc": "string",
"title": "Teste",
"href": "/",
"internal": true,
"content": "Teste",
"items": [
{
"SubMenuItemProps": {
"iconSrc": "string",
"title": "Teste",
"href": "/",
"internal": true,
"content": "Teste"
}
},
{
"SubMenuItemProps": {
"iconSrc": "string",
"title": "Inverno 2021",
"href": "/",
"internal": true,
"content": "Inverno 2021"
}
}
]
}
}
]
2022-08-11 13:06:07 +00:00
}
}
}