官方文档 & Demo演示
中文:https://100px.net
English:If anyone can help translate the document, please contact me ldq404@qq.com
在 vue2.x / vue3.x 中使用
方式 1:通过 import 引入
- 首先安装插件
# npm 安装:
npm install vue-luck-draw
# yarn 安装:
yarn add vue-luck-draw
- 然后找到
main.js
引入插件并 use
import LuckDraw from 'vue-luck-draw'
Vue.use(LuckDraw)
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>
方式 2:通过 script 标签引入
为了避免 CDN 链接出现异常或波动,我非常建议你缓存到本地或服务器(✿◡‿◡)
<div id="app">
<lucky-wheel
width="200px"
height="200px"
...你的配置
/>
<lucky-grid
width="200px"
height="200px"
...你的配置
/>
</div>
<script src="./vue.min.js"></script>
<script src="./vue-luck-draw.umd.min.js"></script>
<script>
new Vue({
el: '#app',
data () {
return {}
}
})
</script>
如果您觉得这个项目还不错, 可以在 Github 上面帮我点个star
☜(゚ヮ゚☜)