enrecipes/app/main.js

49 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-09-15 11:10:16 +00:00
import Vue from "nativescript-vue"
import App from "./components/App"
2020-10-21 17:54:45 +00:00
import store from "./store"
2020-10-14 19:32:32 +00:00
2020-10-21 17:54:45 +00:00
import RadListView from "nativescript-ui-listview/vue"
2020-10-14 19:32:32 +00:00
Vue.use(RadListView)
2020-11-10 18:28:48 +00:00
import ButtonPlugin from "@nativescript-community/ui-material-button/vue"
Vue.use(ButtonPlugin)
import ActivityIndicatorPlugin from "@nativescript-community/ui-material-activityindicator/vue"
Vue.use(ActivityIndicatorPlugin)
import RipplePlugin from "@nativescript-community/ui-material-ripple/vue"
Vue.use(RipplePlugin)
import FloatingActionButtonPlugin from "@nativescript-community/ui-material-floatingactionbutton/vue"
Vue.use(FloatingActionButtonPlugin)
import ProgressPlugin from "@nativescript-community/ui-material-progress/vue"
Vue.use(ProgressPlugin)
// import SpeedDialPlugin from "@nativescript-community/ui-material-speeddial/vue"
// Vue.use(SpeedDialPlugin)
2020-10-21 17:54:45 +00:00
Vue.registerElement(
"RadSideDrawer",
() => require("nativescript-ui-sidedrawer").RadSideDrawer
)
2020-11-02 11:36:53 +00:00
import { CheckBox } from "@nstudio/nativescript-checkbox"
Vue.registerElement("CheckBox", () => CheckBox, {
model: {
prop: "checked",
event: "checkedChange",
},
})
2020-10-22 18:36:50 +00:00
2020-09-15 11:10:16 +00:00
if (TNS_ENV !== "production") {
// Vue.use(VueDevtools)
}
// Prints Vue logs when --env.production is *NOT* set while building
Vue.config.silent = TNS_ENV === "production"
new Vue({
store,
render: (h) => h("frame", [h(App)]),
}).$start()