enrecipes/app/main.ts
vishnuraghavb 6fd6b006ba test build
2021-04-14 19:08:22 +05:30

34 lines
758 B
TypeScript

import {
localize,
androidLaunchEventLocalizationHandler,
} from '@nativescript/localize'
import { on, launchEvent } from '@nativescript/core/application'
on(launchEvent, (args) => {
if (args.android) {
androidLaunchEventLocalizationHandler()
}
})
import Vue from 'nativescript-vue'
import EnRecipes from './components/EnRecipes.vue'
import store from './store'
import CollectionView from '@nativescript-community/ui-collectionview/vue'
Vue.use(CollectionView)
Vue.registerElement(
'ImageZoom',
() => require('@triniwiz/nativescript-image-zoom').ImageZoom
)
import { lvMixin } from './shared/mixins.js'
Vue.mixin(lvMixin)
Vue.config.silent = false
Vue.filter('L', localize)
new Vue({
store,
render: (h) => h(EnRecipes),
}).$start()