naive-ui/demo/documentation/components/modal/zhCN/basic.md

616 B

基础用法

Modal 的基础用法,你可以把任何东西放进去,比如一个卡片。

<n-button
  @click="modalActive = true"
>
  来吧
</n-button>
<n-modal v-model="modalActive">
  <n-card
    style="width: 600px;"
    title="模态框"
    :bordered="false"
    size="huge"
    :segmented="{
      content: 'soft',
      footer: 'soft'
    }"
  >
    <template v-slot:header-extra>
     噢!
    </template>
    内容
    <template v-slot:footer>
      尾部
    </template>
  </n-card>
</n-modal>
export default {
  data () {
    return {
      modalActive: false
    }
  }
}