0.2.2 • Published 7 years ago
dy-wheel-rem v0.2.2
dy-wheel-rem
Project setup
npm installProject Usage
1、load all
import Wheel from 'dy-wheel-rem'
2、load compoment
import { Wheel } from 'dy-wheel-rem'
import 'dy-wheel-rem/lib/dy-wheel-rem.css';
Vue.use(Wheel)
in your vue compoment ,for example
app.vue
...
<div>
<d-wheel></d-wheel>
</div>
or like this
<div>
<d-wheel
api='http://yourapi.com'
@prizeConfig="config"
></d-wheel>
</div>
for more information about config, look at below~~
...##API
In the first version, d-wheel works on your local env, but i open the api feature, that alow you send request to server
api: your api
prizeConfig: your prize config, is array, length is equal 8
[
{
img: your prize image,
position: '1',
title: '奖励1'
},
{
img: your prize image,
position: '2',
title: '奖励2'
},
...
]
events: capture return prize object
<div>
<d-wheel
api='http://yourapi.com'
@prizeConfig="config"
@prize-result="onPlayFinished"
></d-wheel>
</div>Compiles and hot-reloads for development
npm run serveCompiles and minifies for production
npm run buildRun your tests
npm run testLints and fixes files
npm run lintRun your unit tests
npm run test:unit