未来鸟

搜索组件

搜索组件库和组件

Dialog 对话框

Element Plus Dialog 组件展示(Vue 3)

Vue 3 组件
基础对话框
Tips
This is a message
代码示例
<template>
  <el-dialog v-model="dialogVisible" title="Tips">
    <span>This is a message</span>
    <template #footer>
      <el-button @click="dialogVisible = false">Cancel</el-button>
      <el-button type="primary" @click="dialogVisible = false">Confirm</el-button>
    </template>
  </el-dialog>
</template>