Skip to content

Commit 45976f9

Browse files
author
yangfan19
committed
init
0 parents  commit 45976f9

22 files changed

+15257
-0
lines changed

.eslintrc.js

Whitespace-only changes.

.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*

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# skeletondemo
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run dev
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+
}

conmmon/index.css

Whitespace-only changes.

node.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
var express = require('express')
2+
var app = express()
3+
app.use(express.static("./dist"));
4+
app.get('./', (req, res)=> {
5+
res.sendFile("./index.html");
6+
})
7+
app.listen(9000)
8+
9+
console.log('http://localhost:9000')
10+
console.log('服务器开启成功');
11+
12+
13+

0 commit comments

Comments
 (0)