mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
9 lines
112 B
JavaScript
9 lines
112 B
JavaScript
import Vue from 'vue';
|
|
|
|
import App from './Desktop.vue';
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(App),
|
|
})
|