t20-common-lib 0.1.0 → 0.2.0
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 +3 -4
- package/src/index.js +1 -2
- package/dist/demo.html +0 -10
- package/dist/t20-common-lib.common.js +0 -73635
- package/dist/t20-common-lib.common.js.map +0 -1
- package/dist/t20-common-lib.css +0 -1
- package/dist/t20-common-lib.umd.js +0 -73645
- package/dist/t20-common-lib.umd.js.map +0 -1
- package/dist/t20-common-lib.umd.min.js +0 -25
- package/dist/t20-common-lib.umd.min.js.map +0 -1
- package/src/components/MyButton/index.vue +0 -62
- package/src/styles/index.css +0 -0
- package/src/styles/variables.scss +0 -0
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "t20-common-lib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "T20",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "src/index.js",
|
|
8
8
|
"style": "dist/styles/index.css",
|
|
9
9
|
"files": [
|
|
10
|
-
"
|
|
11
|
-
"src",
|
|
12
|
-
"packages"
|
|
10
|
+
"src"
|
|
13
11
|
],
|
|
14
12
|
"scripts": {
|
|
15
13
|
"serve": "vue-cli-service serve",
|
|
@@ -31,6 +29,7 @@
|
|
|
31
29
|
"dependencies": {
|
|
32
30
|
"core-js": "^2.6.12",
|
|
33
31
|
"element-ui": "^2.15.13",
|
|
32
|
+
"normalize.css": "^8.0.1",
|
|
34
33
|
"vue": "^2.6.14",
|
|
35
34
|
"vue-server-renderer": "^2.6.14"
|
|
36
35
|
},
|
package/src/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import './styles/index.css'
|
|
2
1
|
/** 全局指令 */
|
|
3
2
|
import fitlers from './filters/index'
|
|
4
3
|
import repairEl from './utils/repairElementUI'
|
|
5
4
|
// 导入组件
|
|
6
|
-
import MyButton from '
|
|
5
|
+
import MyButton from '../packages/mybutton/index.js'
|
|
7
6
|
|
|
8
7
|
// 存储组件列表
|
|
9
8
|
const components = [
|