mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 00:12:11 +08:00
Upgrade to vue3 (#16)
* upgrade to vue 3.x and framework7 8.x * change calendar plugin to vue-datepicker * disable export button when user does not hava any transaction * implement new pin code input * append thousands separator in amount in exchange rates page
This commit is contained in:
+3
-5
@@ -1,8 +1,6 @@
|
||||
import Vue from 'vue';
|
||||
import { createApp } from 'vue'
|
||||
|
||||
import App from './Desktop.vue';
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
render: h => h(App),
|
||||
})
|
||||
const app = createApp(App);
|
||||
app.mount('#app');
|
||||
|
||||
Reference in New Issue
Block a user