Skip to content

Commit 19acd0a

Browse files
committed
修改文件
1 parent 9b53da3 commit 19acd0a

File tree

16 files changed

+67
-8876
lines changed

16 files changed

+67
-8876
lines changed

vue-cli/.history/todo-list/public/css/base_20210709145516.css

Whitespace-only changes.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
body {
2+
background: #fff;
3+
}
4+
5+
.btn {
6+
display: inline-block;
7+
padding: 4px 12px;
8+
margin-bottom: 0;
9+
font-size: 14px;
10+
line-height: 20px;
11+
text-align: center;
12+
vertical-align: middle;
13+
cursor: pointer;
14+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
15+
border-radius: 4px;
16+
}
17+
18+
.btn-danger {
19+
color: #fff;
20+
background-color: #da4f49;
21+
border: 1px solid #bd362f;
22+
}
23+
24+
.btn-danger:hover {
25+
color: #fff;
26+
background-color: #bd362f;
27+
}
28+
29+
.btn:focus {
30+
outline: none;
31+
}
File renamed without changes.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
8+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
9+
<title><%= htmlWebpackPlugin.options.title %></title>
10+
<link rel="stylesheet" href="./css/base.css">
11+
</head>
12+
13+
<body>
14+
<noscript>
15+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
16+
Please enable it to continue.</strong>
17+
</noscript>
18+
<div id="app"></div>
19+
<!-- built files will be auto injected -->
20+
</body>
21+
22+
</html>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import Vue from 'vue'
2+
import App from './App.vue'
3+
4+
Vue.config.productionTip = false
5+
6+
new Vue({
7+
render: h => h(App),
8+
}).$mount('#app')
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import Vue from 'vue'
2+
import App from './App.vue'
3+
4+
new Vue({
5+
render: h => h(App),
6+
}).$mount('#app')

vue-cli/my-project/.gitignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

vue-cli/my-project/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

vue-cli/my-project/babel.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

vue-cli/my-project/package.json

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)