Skip to content

Commit 3550525

Browse files
创建项目
0 parents  commit 3550525

40 files changed

+13640
-0
lines changed

.browserslistrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
not ie <= 11
3+
Android >= 4.0
4+
iOS >= 8

.env.development

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_BASE_API="/api"

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_BASE_API=""

.eslintrc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'@vue/standard'
9+
],
10+
globals: {
11+
'rongePayObj': true
12+
},
13+
rules: {
14+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
15+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
16+
},
17+
parserOptions: {
18+
parser: 'babel-eslint'
19+
}
20+
}

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw*

.postcssrc.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
plugins: {
3+
"autoprefixer": {},
4+
"postcss-px-to-viewport": {
5+
viewportWidth: 750, // (Number) The width of the viewport.
6+
viewportHeight: 1334, // (Number) The height of the viewport.
7+
unitPrecision: 3, // (Number) The decimal numbers to allow the REM units to grow to.
8+
viewportUnit: 'vw', // (String) Expected units.
9+
selectorBlackList: ['.van-', '.pulldown_', '.dot', '.ignore', '.hairlines', 'cube-'], // (Array) The selectors to ignore and leave as px.
10+
minPixelValue: 1, // (Number) Set the minimum pixel value to replace.
11+
mediaQuery: false // (Boolean) Allow px to be converted in media queries.
12+
},
13+
}
14+
}

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# hi
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Run your tests
19+
```
20+
npm run test
21+
```
22+
23+
### Lints and fixes files
24+
```
25+
npm run lint
26+
```
27+
28+
### Customize configuration
29+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
}

0 commit comments

Comments
 (0)