Commit 509663e8 by zhangyongfeng

copyright

parent 9ed78b34
# luckydraw
# 年会抽奖
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
[演示地址](https://vitozyf.github.io/lucky-draw/index.html#/?tdsourcetag=s_pctim_aiomsg)
......@@ -2,6 +2,7 @@
"name": "luckydraw",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"serve": "vue-cli-service serve",
......
......@@ -34,6 +34,10 @@
<LotteryConfig :visible.sync="showConfig" @resetconfig="reloadTagCanvas" />
<Tool @toggle="toggle" :running="running" />
<Result :visible.sync="showResult"></Result>
<span class="copy-right">
Copyright©zhangyongfeng5350@gmail.com
</span>
</div>
</template>
<script>
......@@ -236,6 +240,13 @@ export default {
}
}
}
.copy-right {
position: absolute;
right: 0;
bottom: 0;
color: #ccc;
font-size: 12px;
}
}
#main {
height: 100%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment