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:
mayswind
2023-04-21 01:45:00 +08:00
committed by GitHub
parent 4b0f7d45e8
commit b1c765eb51
89 changed files with 8353 additions and 16671 deletions
+3 -5
View File
@@ -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');