mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
Merge branch 'vue3' of https://github.com/aringlai/fes.js into aringlai-vue3
# Conflicts: # yarn.lock
This commit is contained in:
commit
7a7694fd47
@ -17,6 +17,7 @@ const headPkgs = [
|
|||||||
"fes-plugin-locale",
|
"fes-plugin-locale",
|
||||||
"fes-plugin-enums",
|
"fes-plugin-enums",
|
||||||
"fes-plugin-jest",
|
"fes-plugin-jest",
|
||||||
|
"fes-plugin-vuex",
|
||||||
"create-fes-app",
|
"create-fes-app",
|
||||||
];
|
];
|
||||||
const tailPkgs = [];
|
const tailPkgs = [];
|
||||||
|
@ -32,6 +32,6 @@
|
|||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-icon": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-icon": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-request": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-request": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
"@webank/fes-plugin-locale": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-locale": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
|
||||||
"ant-design-vue": "2.0.0-rc.3",
|
"ant-design-vue": "2.0.0-rc.3",
|
||||||
"vue": "3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -28,6 +28,6 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,6 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,13 +25,15 @@ function get(name, key, opt = { dir: 'value', extend: []}) {
|
|||||||
key = ''
|
key = ''
|
||||||
}
|
}
|
||||||
let list = ENUMS[name] || []
|
let list = ENUMS[name] || []
|
||||||
|
let value
|
||||||
if (key) {
|
if (key) {
|
||||||
let res = list.filter(item => item.key === key)[0]
|
let res = list.filter(item => item.key === key)[0]
|
||||||
if (!res) return key
|
if (!res) return key
|
||||||
return readonly(parseValueDir(res.value, opt.dir) || key)
|
value = parseValueDir(res.value, opt.dir) || key
|
||||||
} else {
|
} else {
|
||||||
return readonly(format(list, opt.extend))
|
value = format(list, opt.extend)
|
||||||
}
|
}
|
||||||
|
return typeof value === 'object' ? readonly(value) : value
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"svgo": "1.3.2"
|
"svgo": "1.3.2"
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
"jest-transform-stub": "^2.0.0",
|
"jest-transform-stub": "^2.0.0",
|
||||||
"jest-watch-typeahead": "^0.6.1",
|
"jest-watch-typeahead": "^0.6.1",
|
||||||
"babel-jest": "^26.6.3",
|
"babel-jest": "^26.6.3",
|
||||||
"vue-jest": "^5.0.5-0",
|
"vue-jest": "^5.0.0-0",
|
||||||
"ts-jest": "^26.5.0",
|
"ts-jest": "^26.5.0",
|
||||||
"whatwg-fetch": "^3.4.1",
|
"whatwg-fetch": "^3.4.1",
|
||||||
"typescript": "~4.1.2"
|
"typescript": "~4.1.2"
|
||||||
|
@ -33,6 +33,6 @@
|
|||||||
"@ant-design/icons-vue": "^5.1.6",
|
"@ant-design/icons-vue": "^5.1.6",
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"ant-design-vue": "2.0.0-rc.3",
|
"ant-design-vue": "2.0.0-rc.3",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,12 +28,12 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@umijs/utils": "3.3.3",
|
"@umijs/utils": "3.3.3",
|
||||||
"vue-i18n": "^9.0.0-beta.15"
|
"vue-i18n": "^9.0.0-rc.5"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@ant-design/icons-vue": "^5.1.6",
|
"@ant-design/icons-vue": "^5.1.6",
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"ant-design-vue": "2.0.0-rc.3",
|
"ant-design-vue": "2.0.0-rc.3",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,6 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "0.21.1"
|
"axios": "0.21.1"
|
||||||
|
3
packages/fes-plugin-vuex/.fatherrc.js
Normal file
3
packages/fes-plugin-vuex/.fatherrc.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
disableTypeCheck: false,
|
||||||
|
};
|
21
packages/fes-plugin-vuex/LICENSE
Normal file
21
packages/fes-plugin-vuex/LICENSE
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2020-present webank
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
2
packages/fes-plugin-vuex/README.md
Normal file
2
packages/fes-plugin-vuex/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
|
34
packages/fes-plugin-vuex/package.json
Normal file
34
packages/fes-plugin-vuex/package.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"name": "@webank/fes-plugin-vuex",
|
||||||
|
"version": "2.0.0-alpha.2",
|
||||||
|
"description": "@webank/fes-plugin-vuex",
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"files": [
|
||||||
|
"lib"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
|
||||||
|
"directory": "packages/fes-plugin-vuex"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"fes"
|
||||||
|
],
|
||||||
|
"author": "aringlai",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/WeBankFinTech/fes.js/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
|
"vue": "3.0.5",
|
||||||
|
"vuex": "^4.0.0-rc.2"
|
||||||
|
}
|
||||||
|
}
|
83
packages/fes-plugin-vuex/src/index.js
Normal file
83
packages/fes-plugin-vuex/src/index.js
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import { readdirSync, readFileSync, statSync } from 'fs';
|
||||||
|
import { join } from 'path';
|
||||||
|
|
||||||
|
const namespace = 'plugin-vuex';
|
||||||
|
|
||||||
|
export default (api) => {
|
||||||
|
const {
|
||||||
|
paths,
|
||||||
|
utils: { Mustache }
|
||||||
|
} = api;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取文件夹所有JS文件路径
|
||||||
|
* @param {string} dir
|
||||||
|
*/
|
||||||
|
function getDirFilePaths(dir) {
|
||||||
|
const dirs = readdirSync(dir);
|
||||||
|
let pathList = [];
|
||||||
|
for (const name of dirs) {
|
||||||
|
const path = join(dir, name);
|
||||||
|
const info = statSync(path);
|
||||||
|
if (info.isDirectory()) {
|
||||||
|
pathList = pathList.concat(getDirFilePaths(path));
|
||||||
|
} else if (path.endsWith('.js')) {
|
||||||
|
pathList.push(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return pathList;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解析vuex模块及插件文件
|
||||||
|
* @param {Array<string>} pathList 文件路径
|
||||||
|
* @param {string} root
|
||||||
|
*/
|
||||||
|
function parseStore(pathList, root) {
|
||||||
|
const store = {
|
||||||
|
modules: [],
|
||||||
|
plugins: [],
|
||||||
|
importModules: [],
|
||||||
|
importPlugins: []
|
||||||
|
};
|
||||||
|
for (const path of pathList) {
|
||||||
|
const moduleName = path.replace(root, '').replace('.js', '').replace(/(\/|\.|-|_)\S/g, text => text[1].toUpperCase());
|
||||||
|
if (path.indexOf('plugin') > -1) {
|
||||||
|
store.importPlugins.push(`import ${moduleName} from '${path}'`);
|
||||||
|
store.plugins.push(moduleName);
|
||||||
|
} else {
|
||||||
|
store.importModules.push(`import ${moduleName} from '${path}'`);
|
||||||
|
store.modules.push(`${moduleName}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return store;
|
||||||
|
}
|
||||||
|
|
||||||
|
const absRuntimeFilePath = join(namespace, 'runtime.js');
|
||||||
|
api.onGenerateFiles(() => {
|
||||||
|
const root = join(paths.absSrcPath, 'stores');
|
||||||
|
const storePaths = getDirFilePaths(root);
|
||||||
|
const store = parseStore(storePaths, join(root, '/'));
|
||||||
|
|
||||||
|
// 文件写出
|
||||||
|
api.writeTmpFile({
|
||||||
|
path: absRuntimeFilePath,
|
||||||
|
content: Mustache.render(
|
||||||
|
readFileSync(join(__dirname, 'runtime/runtime.tpl'), 'utf-8'),
|
||||||
|
{
|
||||||
|
IMPORT_MODULES: store.importModules.join('\n'),
|
||||||
|
IMPORT_PLUGINS: store.importPlugins.join('\n'),
|
||||||
|
MODULES: `{ ${store.modules.join(', ')} }`,
|
||||||
|
PLUGINS: `[${store.plugins.join(', ')}]`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
||||||
|
api.copyTmpFiles({
|
||||||
|
namespace,
|
||||||
|
path: join(__dirname, 'runtime'),
|
||||||
|
ignore: ['.tpl']
|
||||||
|
});
|
||||||
|
});
|
||||||
|
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
|
||||||
|
};
|
10
packages/fes-plugin-vuex/src/runtime/runtime.tpl
Normal file
10
packages/fes-plugin-vuex/src/runtime/runtime.tpl
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { createStore } from 'vuex'
|
||||||
|
{{{IMPORT_MODULES}}}
|
||||||
|
{{{IMPORT_PLUGINS}}}
|
||||||
|
|
||||||
|
export function onAppCreated({ app }) {
|
||||||
|
app.use(createStore({
|
||||||
|
modules: {{{MODULES}}},
|
||||||
|
plugins: {{{PLUGINS}}}
|
||||||
|
}))
|
||||||
|
}
|
@ -25,7 +25,7 @@
|
|||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue-router": "^4.0.1"
|
"vue-router": "^4.0.1"
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
"@webank/fes": "^2.0.0-alpha.0",
|
"@webank/fes": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-icon": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-icon": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-request": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-request": "^2.0.0-alpha.0",
|
||||||
"vue": "^3.0.4"
|
"vue": "3.0.5"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
extends: [require.resolve('@webank/eslint-config-webank')],
|
extends: ['@webank/eslint-config-webank/vue.js'],
|
||||||
files: [
|
overrides: [
|
||||||
'**/__tests__/*.{j,t}s?(x)',
|
{
|
||||||
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
files: [
|
||||||
|
'**/__tests__/*.{j,t}s?(x)',
|
||||||
|
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
||||||
|
]
|
||||||
|
}
|
||||||
],
|
],
|
||||||
env: {
|
env: {
|
||||||
jest: true
|
jest: true
|
||||||
|
@ -53,8 +53,10 @@
|
|||||||
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-enums": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-enums": "^2.0.0-alpha.0",
|
||||||
"@webank/fes-plugin-jest": "^2.0.0-alpha.0",
|
"@webank/fes-plugin-jest": "^2.0.0-alpha.0",
|
||||||
|
"@webank/fes-plugin-vuex": "^2.0.0-alpha.0",
|
||||||
"ant-design-vue": "2.0.0-rc.3",
|
"ant-design-vue": "2.0.0-rc.3",
|
||||||
"vue": "3.0.4"
|
"vue": "3.0.5",
|
||||||
|
"vuex": "^4.0.0-rc.2"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
<div v-for="item in enumsGet('status')" :key="item.key">{{item.value}}:{{item.key}}</div>
|
<div v-for="item in enumsGet('status')" :key="item.key">{{item.value}}:{{item.key}}</div>
|
||||||
<div v-for="item in roles" :key="item.key">{{item.name}}:{{item.disabled}}</div>
|
<div v-for="item in roles" :key="item.key">{{item.name}}:{{item.disabled}}</div>
|
||||||
<div>{{enumsGet('roles', '2', { dir: 'eName' })}}</div>
|
<div>{{enumsGet('roles', '2', { dir: 'eName' })}}</div>
|
||||||
|
<h4>Vuex <button @click="increment">click me:{{count}}</button></h4>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<config>
|
<config>
|
||||||
@ -18,7 +19,8 @@
|
|||||||
}
|
}
|
||||||
</config>
|
</config>
|
||||||
<script>
|
<script>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted, computed } from 'vue';
|
||||||
|
import { useStore } from 'vuex';
|
||||||
import {
|
import {
|
||||||
access, useAccess, useRouter, useI18n, locale, enums
|
access, useAccess, useRouter, useI18n, locale, enums
|
||||||
} from '@webank/fes';
|
} from '@webank/fes';
|
||||||
@ -63,6 +65,8 @@ export default {
|
|||||||
]
|
]
|
||||||
});
|
});
|
||||||
console.log(roles);
|
console.log(roles);
|
||||||
|
const store = useStore();
|
||||||
|
console.log('store==>', store);
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
console.log(router);
|
console.log(router);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@ -82,7 +86,9 @@ export default {
|
|||||||
accessOnepicess,
|
accessOnepicess,
|
||||||
t: localI18n.t,
|
t: localI18n.t,
|
||||||
enumsGet: enums.get,
|
enumsGet: enums.get,
|
||||||
roles
|
roles,
|
||||||
|
count: computed(() => store.state.counter.count),
|
||||||
|
increment: () => store.commit('counter/increment')
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
23
packages/fes-template/src/stores/counter.js
Normal file
23
packages/fes-template/src/stores/counter.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
export default {
|
||||||
|
namespaced: true,
|
||||||
|
state: () => ({
|
||||||
|
count: 0
|
||||||
|
}),
|
||||||
|
mutations: {
|
||||||
|
increment(state) {
|
||||||
|
state.count++;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getters: {
|
||||||
|
doubleCount(state) {
|
||||||
|
return state.count * 2;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
asyncIncrement({ commit }) {
|
||||||
|
setTimeout(() => {
|
||||||
|
commit('increment');
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
3
packages/fes-template/src/stores/plugin-loger.js
Normal file
3
packages/fes-template/src/stores/plugin-loger.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { createLogger } from 'vuex';
|
||||||
|
|
||||||
|
export default createLogger();
|
25
packages/fes-template/src/stores/user.js
Normal file
25
packages/fes-template/src/stores/user.js
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
export default {
|
||||||
|
namespaced: true,
|
||||||
|
state: () => ({
|
||||||
|
name: 'aring',
|
||||||
|
age: 20,
|
||||||
|
count: 0
|
||||||
|
}),
|
||||||
|
mutations: {
|
||||||
|
increment(state) {
|
||||||
|
state.count++;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getters: {
|
||||||
|
doubleCount(state) {
|
||||||
|
return state.count * 2;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
asyncIncrement({ commit }) {
|
||||||
|
setTimeout(() => {
|
||||||
|
commit('increment');
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
70
yarn.lock
70
yarn.lock
@ -4287,17 +4287,6 @@
|
|||||||
html-tags "^3.1.0"
|
html-tags "^3.1.0"
|
||||||
svg-tags "^1.0.0"
|
svg-tags "^1.0.0"
|
||||||
|
|
||||||
"@vue/compiler-core@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.4.tgz#0122aca6eada4cb28b39ed930af917444755e330"
|
|
||||||
integrity sha512-snpMICsbWTZqBFnPB03qr4DtiSxVYfDF3DvbDSkN9Z9NTM8Chl8E/lYhKBSsvauq91DAWAh8PU3lr9vrLyQsug==
|
|
||||||
dependencies:
|
|
||||||
"@babel/parser" "^7.12.0"
|
|
||||||
"@babel/types" "^7.12.0"
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
estree-walker "^2.0.1"
|
|
||||||
source-map "^0.6.1"
|
|
||||||
|
|
||||||
"@vue/compiler-core@3.0.5":
|
"@vue/compiler-core@3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac"
|
||||||
@ -4309,14 +4298,6 @@
|
|||||||
estree-walker "^2.0.1"
|
estree-walker "^2.0.1"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
|
|
||||||
"@vue/compiler-dom@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.4.tgz#834fd4b15c5698cf9f4505c2bfbccca058a843eb"
|
|
||||||
integrity sha512-FOxbHBIkkGjYQeTz1DlXQjS1Ms8EPXQWsdTdTPeohoS0KzCz6RiOjiAG+jLtMi6Nr5GX2h0TlCvcnI8mcsicFQ==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-core" "3.0.4"
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
|
|
||||||
"@vue/compiler-dom@3.0.5":
|
"@vue/compiler-dom@3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2"
|
||||||
@ -4325,7 +4306,7 @@
|
|||||||
"@vue/compiler-core" "3.0.5"
|
"@vue/compiler-core" "3.0.5"
|
||||||
"@vue/shared" "3.0.5"
|
"@vue/shared" "3.0.5"
|
||||||
|
|
||||||
"@vue/compiler-sfc@^3.0.4", "@vue/compiler-sfc@^3.0.5":
|
"@vue/compiler-sfc@^3.0.0", "@vue/compiler-sfc@^3.0.4", "@vue/compiler-sfc@^3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c"
|
||||||
integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w==
|
integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w==
|
||||||
@ -4365,13 +4346,6 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz#ceb924b4ecb3b9c43871c7a429a02f8423e621ab"
|
resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz#ceb924b4ecb3b9c43871c7a429a02f8423e621ab"
|
||||||
integrity sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ==
|
integrity sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ==
|
||||||
|
|
||||||
"@vue/reactivity@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.4.tgz#b6599dd8271a745960a03f05744ccf7991ba5d8d"
|
|
||||||
integrity sha512-AFTABrLhUYZY2on3ea9FxeXal7w3f6qIp9gT+/oG93H7dFTL5LvVnxygCopv7tvkIl/GSGQb/yK1D1gmXx1Pww==
|
|
||||||
dependencies:
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
|
|
||||||
"@vue/reactivity@3.0.5":
|
"@vue/reactivity@3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.5.tgz#e3789e4d523d845f9ae0b4d770e2b45594742fd2"
|
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.5.tgz#e3789e4d523d845f9ae0b4d770e2b45594742fd2"
|
||||||
@ -4379,14 +4353,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@vue/shared" "3.0.5"
|
"@vue/shared" "3.0.5"
|
||||||
|
|
||||||
"@vue/runtime-core@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.4.tgz#a5b9a001560b1fd8c01a43f68b764c555de7836c"
|
|
||||||
integrity sha512-qH9e4kqU7b3u1JewvLmGmoAGY+mnuBqz7aEKb2mhpEgwa1yFv496BRuUfMXXMCix3+TndUVMJ8jt41FSdNppwg==
|
|
||||||
dependencies:
|
|
||||||
"@vue/reactivity" "3.0.4"
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
|
|
||||||
"@vue/runtime-core@3.0.5":
|
"@vue/runtime-core@3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.5.tgz#da6331d5f300d5794e9e0ebdc8a8bd72a9e19962"
|
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.5.tgz#da6331d5f300d5794e9e0ebdc8a8bd72a9e19962"
|
||||||
@ -4395,15 +4361,6 @@
|
|||||||
"@vue/reactivity" "3.0.5"
|
"@vue/reactivity" "3.0.5"
|
||||||
"@vue/shared" "3.0.5"
|
"@vue/shared" "3.0.5"
|
||||||
|
|
||||||
"@vue/runtime-dom@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.4.tgz#6f81aec545f24511d2c28a315aa3391420b69c68"
|
|
||||||
integrity sha512-BGIoiTSESzWUhN0Ofi2X/q+HN8f6IUFmUEyyBGKbmx7DTAJNZhFfjqsepfXQrM5IGeTfJLB1ZEVyroDQJNXq3g==
|
|
||||||
dependencies:
|
|
||||||
"@vue/runtime-core" "3.0.4"
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
csstype "^2.6.8"
|
|
||||||
|
|
||||||
"@vue/runtime-dom@3.0.5":
|
"@vue/runtime-dom@3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.5.tgz#1ce2c9c449e26ab06963da0064096e882a7a8935"
|
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.5.tgz#1ce2c9c449e26ab06963da0064096e882a7a8935"
|
||||||
@ -4421,11 +4378,6 @@
|
|||||||
"@vue/compiler-ssr" "3.0.5"
|
"@vue/compiler-ssr" "3.0.5"
|
||||||
"@vue/shared" "3.0.5"
|
"@vue/shared" "3.0.5"
|
||||||
|
|
||||||
"@vue/shared@3.0.4":
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.4.tgz#6dc50f593bdfdeaa6183d1dbc15e2d45e7c6b8b3"
|
|
||||||
integrity sha512-Swfbz31AaMX48CpFl+YmIrqOH9MgJMTrltG9e26A4ZxYx9LjGuMV+41WnxFzS3Bc9nbrc6sDPM37G6nIT8NJSg==
|
|
||||||
|
|
||||||
"@vue/shared@3.0.5", "@vue/shared@^3.0.5":
|
"@vue/shared@3.0.5", "@vue/shared@^3.0.5":
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0"
|
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0"
|
||||||
@ -18089,7 +18041,7 @@ vue-eslint-parser@^7.4.1:
|
|||||||
esquery "^1.0.1"
|
esquery "^1.0.1"
|
||||||
lodash "^4.17.15"
|
lodash "^4.17.15"
|
||||||
|
|
||||||
vue-i18n@^9.0.0-beta.15:
|
vue-i18n@^9.0.0-rc.5:
|
||||||
version "9.0.0-rc.5"
|
version "9.0.0-rc.5"
|
||||||
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.0.0-rc.5.tgz#6d32448a44e2345a211c819f2d0627084c1600c6"
|
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.0.0-rc.5.tgz#6d32448a44e2345a211c819f2d0627084c1600c6"
|
||||||
integrity sha512-sOi/bbUYsLH1rGeGgVeOZukeIxk4FlaeNQKcudtHM8Uc5Y7Fhnvv9APKwUoa1hs2GAflhVCiVZopPrd20HL2+w==
|
integrity sha512-sOi/bbUYsLH1rGeGgVeOZukeIxk4FlaeNQKcudtHM8Uc5Y7Fhnvv9APKwUoa1hs2GAflhVCiVZopPrd20HL2+w==
|
||||||
@ -18098,7 +18050,7 @@ vue-i18n@^9.0.0-beta.15:
|
|||||||
"@intlify/shared" "9.0.0-rc.5"
|
"@intlify/shared" "9.0.0-rc.5"
|
||||||
"@vue/devtools-api" "^6.0.0-beta.5"
|
"@vue/devtools-api" "^6.0.0-beta.5"
|
||||||
|
|
||||||
vue-jest@^5.0.5-0:
|
vue-jest@^5.0.0-0:
|
||||||
version "5.0.0-alpha.8"
|
version "5.0.0-alpha.8"
|
||||||
resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-5.0.0-alpha.8.tgz#45b12335dbb73c9ab8309f1e24b2fc8781d519f9"
|
resolved "https://registry.yarnpkg.com/vue-jest/-/vue-jest-5.0.0-alpha.8.tgz#45b12335dbb73c9ab8309f1e24b2fc8781d519f9"
|
||||||
integrity sha512-4FqH69T6X6rOglrEui/mDWvOTGB9ammmCXLVdS4s524D4Emx8fBC4sKAPFAUZfbWpYh/7i7xWoPwF4agfyGWwA==
|
integrity sha512-4FqH69T6X6rOglrEui/mDWvOTGB9ammmCXLVdS4s524D4Emx8fBC4sKAPFAUZfbWpYh/7i7xWoPwF4agfyGWwA==
|
||||||
@ -18130,16 +18082,7 @@ vue-types@^3.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
is-plain-object "3.0.1"
|
is-plain-object "3.0.1"
|
||||||
|
|
||||||
vue@3.0.4:
|
vue@3.0.5, vue@^3.0.0, vue@^3.0.5:
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.4.tgz#872c65c143f5717bd5387c61613d9f55f4cc0f43"
|
|
||||||
integrity sha512-2o+AiQF8sAupyhbyl3oxVCl3WCwC/n5NI7VMM+gVQ231qvSB8eI7sCBloloqDJK6yA367EEtmRSeSCf4sxCC+A==
|
|
||||||
dependencies:
|
|
||||||
"@vue/compiler-dom" "3.0.4"
|
|
||||||
"@vue/runtime-dom" "3.0.4"
|
|
||||||
"@vue/shared" "3.0.4"
|
|
||||||
|
|
||||||
vue@^3.0.0, vue@^3.0.4, vue@^3.0.5:
|
|
||||||
version "3.0.5"
|
version "3.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.5.tgz#de1b82eba24abfe71e0970fc9b8d4b2babdc3fe1"
|
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.5.tgz#de1b82eba24abfe71e0970fc9b8d4b2babdc3fe1"
|
||||||
integrity sha512-TfaprOmtsAfhQau7WsomXZ8d9op/dkQLNIq8qPV3A0Vxs6GR5E+c1rfJS1SDkXRQj+dFyfnec7+U0Be1huiScg==
|
integrity sha512-TfaprOmtsAfhQau7WsomXZ8d9op/dkQLNIq8qPV3A0Vxs6GR5E+c1rfJS1SDkXRQj+dFyfnec7+U0Be1huiScg==
|
||||||
@ -18158,6 +18101,11 @@ vuepress@^2.0.0-alpha.18:
|
|||||||
"@vuepress/core" "2.0.0-alpha.19"
|
"@vuepress/core" "2.0.0-alpha.19"
|
||||||
"@vuepress/theme-default" "2.0.0-alpha.19"
|
"@vuepress/theme-default" "2.0.0-alpha.19"
|
||||||
|
|
||||||
|
vuex@^4.0.0-rc.2:
|
||||||
|
version "4.0.0-rc.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/vuex/-/vuex-4.0.0-rc.2.tgz#3681c84eb6f5171b039edaa17cc78105e20724f3"
|
||||||
|
integrity sha512-HCPzYGea1xL7fMpDoMiHKujC1Bi/HM9LS5ML0Kv55zQtZJvOl0Lq7eWvJoen+SI4Lf7p9V5AqcVsoLPXNBywjg==
|
||||||
|
|
||||||
w3c-hr-time@^1.0.2:
|
w3c-hr-time@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
|
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user