Set up vie-loader

This commit is contained in:
Cole Bemis
2017-01-28 15:15:20 -08:00
parent 9ce3c68a9b
commit 2f70a91dce
5 changed files with 150 additions and 9 deletions

9
src/App.vue Normal file
View File

@ -0,0 +1,9 @@
<template>
<div>Hello World</div>
</template>
<script>
export default {
name: 'App'
}
</script>

View File

@ -1,4 +1,5 @@
import Vue from 'vue';
import App from './App';
const data = {
icons: [
@ -56,5 +57,7 @@ const data = {
new Vue({
el: '#app',
data: data
data: data,
components: {App},
template: '<app/>'
});