# HorRule 横版规则弹窗

# 引入

import PressHorRule from 'press-plus/press-hor-rule/press-hor-rule';

export default {
  components: {
    PressHorRule,
  }
}

# 代码演示

# 基础用法

<PressHorRule
  v-if="show"
  @close="close"
/>
export default {
  methods: {
    close() {
      this.show = false;
    },
  },
};

# API

# Props

参数 说明 类型 默认值
title 标题 string 比赛规则
rule 比赛规则 string -

# Events

事件名 说明 参数
close 点击关闭 -