19 lines
334 B
JavaScript
19 lines
334 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: {
|
|
menus: Seed.findItMenu
|
|
},
|
|
components: {
|
|
'menus-component': menusComponent
|
|
}
|
|
});
|