mirror of
https://github.com/fergalmoran/OpnForm.git
synced 2026-01-19 06:54:56 +00:00
* create form as a guest * Remove vue-tour * Refactor initForm function and improve template merge * Add templates to navbar * Fix template preview submit issue Co-authored-by: Chirag Chhatrala <chirag@notionforms.io>
24 lines
414 B
JavaScript
Vendored
24 lines
414 B
JavaScript
Vendored
import Vue from 'vue'
|
|
import store from '~/store'
|
|
import router from '~/router'
|
|
import i18n from '~/plugins/i18n'
|
|
import App from '~/components/App'
|
|
import LoadScript from 'vue-plugin-load-script'
|
|
import Base from './base'
|
|
|
|
import '~/plugins'
|
|
import '~/components'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
Vue.mixin(Base)
|
|
Vue.use(LoadScript)
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
i18n,
|
|
store,
|
|
router,
|
|
...App
|
|
})
|