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/dist/yc-ui2.common.js +19 -17
- package/dist/yc-ui2.common.js.map +1 -1
- package/dist/yc-ui2.css +1 -1
- package/dist/yc-ui2.umd.js +19 -17
- package/dist/yc-ui2.umd.js.map +1 -1
- package/dist/yc-ui2.umd.min.js +1 -1
- package/dist/yc-ui2.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/public/index.html +10 -6
- package/src/App.vue +1 -1
- package/src/main.js +1 -1
package/package.json
CHANGED
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
|
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="
|
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
package/src/main.js
CHANGED