English:If anyone can help translate the document, please contact me
ldq404@qq.com
- 首先安装插件
# npm 安装:
npm install vue-luck-draw
# yarn 安装:
yarn add vue-luck-draw
- 然后找到
main.js
引入插件并use
// vue2.x
import LuckDraw from 'vue-luck-draw'
Vue.use(LuckDraw)
// vue3.x
import LuckDraw from 'vue-luck-draw/vue3'
createApp(App).use(LuckDraw).mount('#app')
- 最后在组件内使用
<LuckyWheel />
大转盘抽奖 或<LuckyGrid />
九宫格抽奖
<template>
<div>
<!-- 大转盘抽奖 -->
<LuckyWheel
width="200px"
height="200px"
...你的配置
/>
<!-- 九宫格抽奖 -->
<LuckyGrid
width="200px"
height="200px"
...你的配置
/>
</div>
</template>
为了避免 CDN 链接出现异常或波动,我非常建议你缓存到本地或服务器
- vue2.x:
- vue3.x:
<div id="app">
<!-- 大转盘抽奖 -->
<lucky-wheel
width="200px"
height="200px"
...你的配置
/>
<!-- 九宫格抽奖 -->
<lucky-grid
width="200px"
height="200px"
...你的配置
/>
</div>
<script src="./vue.min.js"></script>
<script src="./luckdraw.umd.min.js"></script>
<script>
new Vue({
el: '#app',
data () {
return {}
}
})
</script>