main
root 2 years ago
parent 8f1f3fa1f1
commit 75fcab510e

@ -0,0 +1,2 @@
VITE_BASE_URL=/api
VITE_REQUEST_TIMEOUT=20000

@ -0,0 +1,2 @@
VITE_BASE_URL=https://gateway.mashibing.cn
VITE_REQUEST_TIMEOUT=20000

@ -0,0 +1,2 @@
VITE_BASE_URL=https://gateway.mashibing.com
VITE_REQUEST_TIMEOUT=20000

@ -0,0 +1,2 @@
VITE_BASE_URL=https://gateway-test.mashibing.cn
VITE_REQUEST_TIMEOUT=20000

@ -0,0 +1,34 @@
module.exports = {
root: true,
env: {
es6: true,
node: true,
browser: true,
},
extends: ['eslint:recommended'],
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true,
impliedStrict: true,
},
},
rules: {
'no-undef': 'error',
'no-alert': 'warn',
'no-debugger': 'warn',
'no-else-return': 'error',
indent: [0, 4],
eqeqeq: [2, 'always'],
semi: [2, 'always'],
quotes: [2, 'single'],
},
globals: {
arguments: true,
defineProps: true,
defineEmits: true,
defineExpose: true,
},
};

@ -0,0 +1,16 @@
module.exports = {
printWidth: 120,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'es5',
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
htmlWhitespaceSensitivity: 'ignore',
vueIndentScriptAndStyle: true,
endOfLine: 'auto',
};

@ -0,0 +1,3 @@
{
"recommendations": ["johnsoncodehk.volar", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}

@ -0,0 +1,44 @@
{
// Place your shop-admin 工作区 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
// "Print to console": {
// "scope": "javascript,typescript",
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"import element plus component": {
"scope": "javascript,typescript",
"prefix": "import ele",
"body": [
"import { ${1:El} } from 'element-plus/es/components/$2/index';",
"import 'element-plus/es/components/$2/style/css';"
],
"description": "按需引用ElementPlus组件及其样式"
},
"vbase extra component": {
"scope": "vue",
"prefix": "vbase extra",
"body": [
"<template>\n<component :is=\"render\" />\n</template>",
"<script setup lang=\"jsx\">",
"import { ${1:El} } from 'element-plus/es/components/$2/index';",
"import 'element-plus/es/components/$2/style/css';",
"const props = defineProps({});",
"const attrs = useAttrs();",
"const slots = useSlots();",
"const render = () => <$1 {...props} {...attrs} v-slots={slots} />;",
"</script>",
"<style lang=\"less\" scoped></style>"
],
"description": "快速二次封装ElementPlus组件"
}
}
Loading…
Cancel
Save