yc-ui2 0.1.2-beta04 → 0.1.2-beta06

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yc-ui2",
3
- "version": "0.1.2-beta04",
3
+ "version": "0.1.2-beta06",
4
4
  "private": false,
5
5
  "description": "湖南优创UI组件库",
6
6
  "main": "dist/yc-ui2.umd.min.js",
package/public/index.html CHANGED
@@ -1,17 +1,21 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="">
3
3
  <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
4
+ <meta charset="utf-8" />
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0" />
7
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
8
8
  <title><%= htmlWebpackPlugin.options.title %></title>
9
9
  </head>
10
10
  <body>
11
11
  <noscript>
12
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
12
+ <strong
13
+ >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
14
+ properly without JavaScript enabled. Please enable it to
15
+ continue.</strong
16
+ >
13
17
  </noscript>
14
- <div id="app"></div>
18
+ <div id="yc-ui2"></div>
15
19
  <!-- built files will be auto injected -->
16
20
  </body>
17
21
  </html>
package/src/App.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div id="app">
2
+ <div id="yc-ui2">
3
3
  <!-- <YcSlideVerify /> -->
4
4
  <router-view></router-view>
5
5
  <YcCustomerService
package/src/main.js CHANGED
@@ -14,5 +14,5 @@ Vue.use(ElementUI)
14
14
  new Vue({
15
15
  render: h => h(App),
16
16
  router
17
- }).$mount('#app')
17
+ }).$mount('#yc-ui2')
18
18