fast-vue-multi-pages 1.0.16 → 1.0.18

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.
@@ -6,7 +6,7 @@ import {FastVueMultiTool} from "fast-vue-multi-pages";
6
6
  * 浮动垂直 header-body-footer 布局,其中:header 与 footer 布局将悬浮在body中
7
7
  */
8
8
  export default defineComponent({
9
- name: "fast-layout-header-body-footer",
9
+ name: "fast-layout-body",
10
10
  props: {
11
11
  /**
12
12
  * header默认高度
@@ -0,0 +1,8 @@
1
+ import FastLayoutFullscreen from './fast-layout-fullscreen.vue'
2
+ import FastLayoutBody from "./fast-layout-body.vue";
3
+
4
+
5
+ export {
6
+ FastLayoutFullscreen,
7
+ FastLayoutBody
8
+ }
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "fast-vue-multi-pages",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "author": "janesen",
5
5
  "description": "快速搭建VUE项目工具类的基本库,主要用于每个功能页面独立生成html",
6
6
  "main": "./dist/cjs/index.js",
7
7
  "module": "./dist/esm/index.js",
8
8
  "scripts": {
9
+ "vue-lib": "vue-cli-service build --target lib ./src/component/index.js --dest component",
9
10
  "tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && tsc -p ./src/vue/tsconfig-cjs.json && tsc -p ./src/loader/tsconfig-cjs.json",
10
11
  "login": "npm login",
11
12
  "buildLocal": "npm run tsc",
@@ -33,7 +34,8 @@
33
34
  "copy-to-clipboard": "^3.3.3",
34
35
  "ip": "^2.0.1",
35
36
  "file64": "^1.0.3",
36
- "crypto-js": "^4.2.0"
37
+ "crypto-js": "^4.2.0",
38
+ "vue": "^3.2.13"
37
39
  },
38
40
  "devDependencies": {
39
41
  "@typescript-eslint/eslint-plugin": "^7.16.0",
@@ -41,14 +43,22 @@
41
43
  "ts-loader": "^9.5.1",
42
44
  "typescript": "^5.5.3",
43
45
  "webpack": "^5.92.1",
44
- "webpack-cli": "^5.1.4"
46
+ "webpack-cli": "^5.1.4",
47
+ "@babel/core": "^7.12.16",
48
+ "@babel/eslint-parser": "^7.12.16",
49
+ "@vue/cli-plugin-babel": "~5.0.0",
50
+ "@vue/cli-plugin-eslint": "~5.0.0",
51
+ "@vue/cli-service": "~5.0.0",
52
+ "eslint": "^7.32.0",
53
+ "eslint-plugin-vue": "^8.0.3",
54
+ "fast-vue-multi-pages": "^1.0.17"
45
55
  },
46
56
  "files": [
47
57
  "dist/cjs",
48
58
  "dist/esm",
49
59
  "vue",
50
60
  "loader",
51
- "layout"
61
+ "component"
52
62
  ],
53
63
  "eslintConfig": {
54
64
  "root": true,
@@ -56,10 +66,11 @@
56
66
  "node": true
57
67
  },
58
68
  "extends": [
69
+ "plugin:vue/vue3-essential",
59
70
  "eslint:recommended"
60
71
  ],
61
72
  "parserOptions": {
62
- "parser": "@typescript-eslint/parser"
73
+ "parser": "@babel/eslint-parser"
63
74
  },
64
75
  "rules": {}
65
76
  },
package/vue/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  import { FastVueMultiPages } from "./FastVueMultiPages";
2
- export { FastVueMultiPages, };
2
+ export { FastVueMultiPages };