moved mount script to index.html

This commit is contained in:
Adam Jahr 2020-05-14 23:05:43 -04:00
parent 83ceaf0593
commit 6640d97f3f
2 changed files with 6 additions and 2 deletions

View File

@ -23,9 +23,15 @@
<!-- Import App -->
<script src="./main.js"></script>
<!-- Import Components -->
<script src="./components/ProductDisplay.js"></script>
<script src="./components/ReviewForm.js"></script>
<script src="./components/ReviewList.js"></script>
<!-- Mount App -->
<script>
app.mount('#app')
</script>
</body>
</html>

View File

@ -11,5 +11,3 @@ const app = Vue.createApp({
}
}
})
app.mount('#app')