mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
8 lines
121 B
JavaScript
8 lines
121 B
JavaScript
import Vue from 'vue'
|
|
import App from './APP.vue'
|
|
import 'melody.css'
|
|
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app')
|