Sha256: 21b6858d744f7ea37e38e02b1969a8c1af859da0566d204f4b82f50cca7d24c9

Contents?: true

Size: 958 Bytes

Versions: 22

Compression:

Stored size: 958 Bytes

Contents

import 'systemjs-webpack-interop/auto-public-path/2'
import Vue from 'vue'
import singleSpaVue from 'single-spa-vue'

import App from './App.vue'
import router from './router'
import store from '@openc3/tool-common/src/plugins/store'

Vue.config.productionTip = false

import '@openc3/tool-common/src/assets/stylesheets/layout/layout.scss'
import vuetify from '@openc3/tool-common/src/plugins/vuetify'
import Dialog from '@openc3/tool-common/src/plugins/dialog'
import PortalVue from 'portal-vue'
import Notify from '@openc3/tool-common/src/plugins/notify'

Vue.use(PortalVue)
Vue.use(Dialog)
Vue.use(Notify, { store })

const vueLifecycles = singleSpaVue({
  Vue,
  appOptions: {
    router,
    store,
    vuetify,
    render(h) {
      return h(App, {
        props: {},
      })
    },
    el: '#openc3-tool',
  },
})

export const bootstrap = vueLifecycles.bootstrap
export const mount = vueLifecycles.mount
export const unmount = vueLifecycles.unmount

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
openc3-5.20.0 templates/tool_vue/src/main.js
openc3-5.19.0 templates/tool_vue/src/main.js
openc3-5.18.0 templates/tool_vue/src/main.js
openc3-5.17.1 templates/tool_vue/src/main.js
openc3-5.17.0 templates/tool_vue/src/main.js
openc3-5.16.0 templates/tool_vue/src/main.js
openc3-5.15.2 templates/tool_vue/src/main.js
openc3-5.15.1 templates/tool_vue/src/main.js
openc3-5.15.0 templates/tool_vue/src/main.js
openc3-5.14.2 templates/tool_vue/src/main.js
openc3-5.14.1 templates/tool_vue/src/main.js
openc3-5.14.0 templates/tool_vue/src/main.js
openc3-5.13.0 templates/tool_vue/src/main.js
openc3-5.12.0 templates/tool_vue/src/main.js
openc3-5.11.3 templates/tool_vue/src/main.js
openc3-5.11.2 templates/tool_vue/src/main.js
openc3-5.11.1 templates/tool_vue/src/main.js
openc3-5.11.0 templates/tool_vue/src/main.js
openc3-5.10.1 templates/tool_vue/src/main.js
openc3-5.10.0 templates/tool_vue/src/main.js