first working html render with vue

This commit is contained in:
Mark Eaton
2022-08-28 01:08:03 -04:00
parent 93e19bf925
commit 9feb7defd8
2 changed files with 3 additions and 97 deletions
+3 -6
View File
@@ -5,17 +5,14 @@ const menusComponent = {
<i v-bind:class="item.icon" aria-hidden="true"></i>
<strong>{{ item.description }}</strong>
</div>
</a>`
</a>`,
props: ['item']
}
new Vue({
el: '#app',
data: {
findIt: Seed.findItMenu,
services: Seed.servicesMenu,
aboutUs: Seed.aboutUsMenu,
locationAndHours: Seed.locationAndHoursMenu,
help: Seed.helpMenu
menus: Seed.findItMenu
},
components: {
'menus-component': menusComponent