feat: add vue3 in compat mode

See: https://v3.vuejs.org/guide/migration/migration-build.html#installation
This commit is contained in:
Dominik Pschenitschni 2021-08-19 20:09:45 +02:00
parent 4ee7a8bac6
commit 78a5096e0d
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
5 changed files with 206 additions and 873 deletions

View file

@ -23,6 +23,7 @@
</template>
<script>
import {defineComponent} from 'vue'
import {mapState, mapGetters} from 'vuex'
import isTouchDevice from 'is-touch-device'
@ -36,7 +37,7 @@ import ContentNoAuth from './components/home/contentNoAuth'
import {setLanguage} from './i18n/setup'
import AccountDeleteService from '@/services/accountDelete'
export default {
export default defineComponent({
name: 'app',
components: {
ContentNoAuth,
@ -112,5 +113,5 @@ export default {
}
},
},
}
})
</script>