yc-ui2 0.1.2-beta24 → 0.1.2-beta26

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yc-ui2",
3
- "version": "0.1.2-beta24",
3
+ "version": "0.1.2-beta26",
4
4
  "private": false,
5
5
  "description": "湖南优创UI组件库",
6
6
  "main": "dist/yc-ui2.umd.min.js",
package/src/App.vue CHANGED
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div id="yc-ui2">
3
- <!-- <YcSlideVerify /> -->
3
+ <YcSlideVerify />
4
4
  <router-view></router-view>
5
5
  <YcCustomerService
6
6
  title="小优客服【38号为您服务】"
@@ -19,7 +19,7 @@
19
19
  </template>
20
20
  </div>
21
21
  </YcCustomerService>
22
- <YcCA :region="region" :caUrl="caUrl" @caSuccess="login" />
22
+ <!-- <YcCA :region="region" :caUrl="caUrl" @caSuccess="login" /> -->
23
23
  </div>
24
24
  </template>
25
25
 
@@ -27,9 +27,9 @@
27
27
  export default {
28
28
  name: "App",
29
29
  components: {
30
- // YcSlideVerify: () => import("comp/YcSlideVerify"),
30
+ YcSlideVerify: () => import("comp/YcSlideVerify"),
31
31
  YcCustomerService: () => import("comp/YcCustomerService"),
32
- YcCA: () => import("comp/YcCA"),
32
+ // YcCA: () => import("comp/YcCA"),
33
33
  },
34
34
  data() {
35
35
  return {
package/src/main.js CHANGED
@@ -2,13 +2,13 @@ import Vue from 'vue'
2
2
  import App from './App.vue'
3
3
  import router from './router'
4
4
 
5
- import SlideVerify from "vue-monoplasty-slide-verify"
5
+ // import SlideVerify from "vue-monoplasty-slide-verify"
6
6
  import ElementUI from 'element-ui'
7
7
  import 'element-ui/lib/theme-chalk/index.css';
8
8
 
9
9
  Vue.config.productionTip = false
10
10
 
11
- Vue.use(SlideVerify)
11
+ // Vue.use(SlideVerify)
12
12
  Vue.use(ElementUI)
13
13
 
14
14
  new Vue({