Skip to content

Hiteggs 组件

介绍

用于砸金蛋抽奖场景,可以自定义金蛋图片等

基础用法

html
<template>
  <nut-hiteggs></nut-hiteggs>
</template>

自定义传入个数

html
<template>
  <nut-hiteggs :num="9"></nut-hiteggs>
</template>

砸击事件

html
<template>
  <nut-hiteggs :num="9" @click="hit"></nut-hiteggs>
</template>
<script>
  export default {
    setup() {
      const hit = () => {
        console.log("中奖啦");
      };
      return {
        hit,
      };
    },
  };
</script>

Props

参数说明类型默认值
num金蛋个数number9
intact-img完整金蛋图片地址String-
hammer锤子图片String-
width金蛋图片宽度String80px
height金蛋图片高度String80px

Events

事件名说明回调参数
click砸击金蛋后触发-

MIT Licensed