24 lines
508 B
JavaScript
24 lines
508 B
JavaScript
const menusComponent = {
|
|
template:
|
|
`<div class="bigger-fancy-text">
|
|
<i v-bind:class="item.icon" aria-hidden="true"></i>
|
|
<strong>{{ item.description }}</strong>
|
|
</div>`,
|
|
props: ['item']
|
|
}
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
data: {
|
|
hamburger: Seed.hamburgerMenu,
|
|
findIt: Seed.findItMenu,
|
|
services: Seed.servicesMenu,
|
|
aboutUs: Seed.aboutUsMenu,
|
|
locationAndHours: Seed.locationAndHoursMenu,
|
|
help: Seed.helpMenu
|
|
},
|
|
components: {
|
|
'menus-component': menusComponent
|
|
}
|
|
});
|