mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
Set up vie-loader
This commit is contained in:
9
src/App.vue
Normal file
9
src/App.vue
Normal file
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>Hello World</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'App'
|
||||
}
|
||||
</script>
|
@ -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/>'
|
||||
});
|
Reference in New Issue
Block a user