Commit 509663e8 by zhangyongfeng

copyright

parent 9ed78b34
# luckydraw # 年会抽奖
## Project setup [演示地址](https://vitozyf.github.io/lucky-draw/index.html#/?tdsourcetag=s_pctim_aiomsg)
```
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/).
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
"name": "luckydraw", "name": "luckydraw",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"license": "MIT",
"scripts": { "scripts": {
"dev": "vue-cli-service serve", "dev": "vue-cli-service serve",
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
......
...@@ -34,6 +34,10 @@ ...@@ -34,6 +34,10 @@
<LotteryConfig :visible.sync="showConfig" @resetconfig="reloadTagCanvas" /> <LotteryConfig :visible.sync="showConfig" @resetconfig="reloadTagCanvas" />
<Tool @toggle="toggle" :running="running" /> <Tool @toggle="toggle" :running="running" />
<Result :visible.sync="showResult"></Result> <Result :visible.sync="showResult"></Result>
<span class="copy-right">
Copyright©zhangyongfeng5350@gmail.com
</span>
</div> </div>
</template> </template>
<script> <script>
...@@ -236,6 +240,13 @@ export default { ...@@ -236,6 +240,13 @@ export default {
} }
} }
} }
.copy-right {
position: absolute;
right: 0;
bottom: 0;
color: #ccc;
font-size: 12px;
}
} }
#main { #main {
height: 100%; 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