Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
公瑾
/
lucky-draw
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
509663e8
authored
2019-12-27 12:36:27 +0800
by
zhangyongfeng
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
copyright
1 parent
9ed78b34
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
23 deletions
README.md
package.json
src/App.vue
README.md
View file @
509663e
#
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
)
...
...
package.json
View file @
509663e
...
...
@@ -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"
,
...
...
src/App.vue
View file @
509663e
...
...
@@ -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%
;
...
...
Please
register
or
sign in
to post a comment