cloudcc-cli 1.3.8 → 1.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/template/mainjs CHANGED
@@ -1,16 +1,16 @@
1
- import Vue from 'vue';
2
- import ElementUI from 'element-ui';
3
- Vue.use(ElementUI);
4
- import 'element-ui/lib/theme-chalk/index.css';
5
- import App from './App.vue';
6
-
7
- import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
8
- Vue.prototype.$CCDK = CCDK
9
- window.$CCDK = CCDK
10
-
11
- Vue.prototype.$Components = new Map()
12
- Vue.config.productionTip = false
13
-
14
- new Vue({
15
- render: h => h(App),
16
- }).$mount('#app')
1
+ import Vue from 'vue';
2
+ import ElementUI from 'element-ui';
3
+ Vue.use(ElementUI);
4
+ import 'element-ui/lib/theme-chalk/index.css';
5
+ import App from './App.vue';
6
+
7
+ import * as CCDK from "cloudcc-ccdk/lib/ccdk.min.js";
8
+ Vue.prototype.$CCDK = CCDK
9
+ window.$CCDK = CCDK
10
+
11
+ Vue.prototype.$Components = new Map()
12
+ Vue.config.productionTip = false
13
+
14
+ new Vue({
15
+ render: h => h(App),
16
+ }).$mount('#app')