shijiplus-web-plugin 0.1.8 → 0.1.10
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/directive/module/draggable.js +1 -1
- package/src/index.js +3 -3
- package/src/main.js +2 -2
- package/dist/css/app.898cbf8f.css +0 -2
- package/dist/favicon.ico +0 -0
- package/dist/fonts/ionicons.31fd4446.ttf +0 -0
- package/dist/fonts/ionicons.d03f2836.woff2 +0 -0
- package/dist/fonts/ionicons.dacd136b.woff +0 -0
- package/dist/img/ionicons.6e8059e8.svg +0 -870
- package/dist/index.html +0 -1
- package/dist/js/app.js +0 -1
- package/dist/js/chunk-vendors.js +0 -32
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shijiplus-web-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"files": [
|
|
5
|
-
"src"
|
|
6
|
-
"dist"
|
|
5
|
+
"src"
|
|
7
6
|
],
|
|
8
7
|
"description": "A company project",
|
|
9
8
|
"author": "jia",
|
|
10
9
|
"license": "ISC",
|
|
11
10
|
"private": false,
|
|
12
|
-
"main": "./
|
|
11
|
+
"main": "./src/index.js",
|
|
13
12
|
"scripts": {
|
|
14
13
|
"serve": "vue-cli-service serve",
|
|
15
14
|
"build": "vue-cli-service build",
|
package/src/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import iView from 'iview'
|
|
2
2
|
import './index.less'
|
|
3
|
-
import i18n from '
|
|
4
|
-
import ExtentionPlugin from '
|
|
5
|
-
import importDirective from '
|
|
3
|
+
import i18n from './locale'
|
|
4
|
+
import ExtentionPlugin from './extentionPlugin'
|
|
5
|
+
import importDirective from './directive'
|
|
6
6
|
|
|
7
7
|
console.log('--------web-tool---index.js----------')
|
|
8
8
|
|
package/src/main.js
CHANGED
|
@@ -3,8 +3,8 @@ import App from './App.vue'
|
|
|
3
3
|
import iView from 'iview'
|
|
4
4
|
import './index.less'
|
|
5
5
|
import i18n from '@/locale'
|
|
6
|
-
import ExtentionPlugin from '
|
|
7
|
-
import importDirective from '
|
|
6
|
+
import ExtentionPlugin from './extentionPlugin'
|
|
7
|
+
import importDirective from './directive'
|
|
8
8
|
|
|
9
9
|
Vue.config.productionTip = false
|
|
10
10
|
|