|
@@ -44,6 +44,7 @@ import JeecgComponents from '@/components/jeecg/index'
|
|
|
import KFormDesign from 'k-form-design'
|
|
|
|
|
|
import dataV from '@jiaminghi/data-view'
|
|
|
+import SSO from '@/cas/sso.js'
|
|
|
|
|
|
require('@jeecg/antd-online-214')
|
|
|
require('@jeecg/antd-online-214/dist/OnlineForm.css')
|
|
@@ -70,6 +71,11 @@ Vue.prototype.getAction = getAction
|
|
|
|
|
|
|
|
|
Vue.use(dataV)
|
|
|
+
|
|
|
+SSO.init(() => {
|
|
|
+ main()
|
|
|
+ })
|
|
|
+function main() {
|
|
|
new Vue({
|
|
|
router,
|
|
|
store,
|
|
@@ -93,3 +99,4 @@ new Vue({
|
|
|
},
|
|
|
render: h => h(App)
|
|
|
}).$mount('#app')
|
|
|
+}
|