copyright
Showing
3 changed files
with
14 additions
and
23 deletions
1 | # luckydraw | 1 | # 年会抽奖 |
2 | 2 | ||
3 | ## Project setup | 3 | [演示地址](https://vitozyf.github.io/lucky-draw/index.html#/?tdsourcetag=s_pctim_aiomsg) |
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 | ### Lints and fixes files | ||
19 | ``` | ||
20 | npm run lint | ||
21 | ``` | ||
22 | |||
23 | ### Customize configuration | ||
24 | See [Configuration Reference](https://cli.vuejs.org/config/). | ... | ... |
... | @@ -2,6 +2,7 @@ | ... | @@ -2,6 +2,7 @@ |
2 | "name": "luckydraw", | 2 | "name": "luckydraw", |
3 | "version": "0.1.0", | 3 | "version": "0.1.0", |
4 | "private": true, | 4 | "private": true, |
5 | "license": "MIT", | ||
5 | "scripts": { | 6 | "scripts": { |
6 | "dev": "vue-cli-service serve", | 7 | "dev": "vue-cli-service serve", |
7 | "serve": "vue-cli-service serve", | 8 | "serve": "vue-cli-service serve", | ... | ... |
... | @@ -34,6 +34,10 @@ | ... | @@ -34,6 +34,10 @@ |
34 | <LotteryConfig :visible.sync="showConfig" @resetconfig="reloadTagCanvas" /> | 34 | <LotteryConfig :visible.sync="showConfig" @resetconfig="reloadTagCanvas" /> |
35 | <Tool @toggle="toggle" :running="running" /> | 35 | <Tool @toggle="toggle" :running="running" /> |
36 | <Result :visible.sync="showResult"></Result> | 36 | <Result :visible.sync="showResult"></Result> |
37 | |||
38 | <span class="copy-right"> | ||
39 | Copyright©zhangyongfeng5350@gmail.com | ||
40 | </span> | ||
37 | </div> | 41 | </div> |
38 | </template> | 42 | </template> |
39 | <script> | 43 | <script> |
... | @@ -236,6 +240,13 @@ export default { | ... | @@ -236,6 +240,13 @@ export default { |
236 | } | 240 | } |
237 | } | 241 | } |
238 | } | 242 | } |
243 | .copy-right { | ||
244 | position: absolute; | ||
245 | right: 0; | ||
246 | bottom: 0; | ||
247 | color: #ccc; | ||
248 | font-size: 12px; | ||
249 | } | ||
239 | } | 250 | } |
240 | #main { | 251 | #main { |
241 | height: 100%; | 252 | height: 100%; | ... | ... |
-
Please register or sign in to post a comment