b1c765eb51
* 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
7 lines
114 B
JavaScript
7 lines
114 B
JavaScript
import { createApp } from 'vue'
|
|
|
|
import App from './Desktop.vue';
|
|
|
|
const app = createApp(App);
|
|
app.mount('#app');
|