demo2.vue 616 B

12345678910111213141516171819202122
  1. <template>
  2. <m-button @click="dialogVisible = true">点击打开 Dialog</m-button>
  3. <m-dialog
  4. v-model="dialogVisible"
  5. title="提示"
  6. width="30%"
  7. center
  8. >
  9. <span>需要注意的是内容是默认不居中的</span>
  10. <template #footer>
  11. <span class="dialog-footer">
  12. <m-button @click="dialogVisible = false" style="margin-right: 20px">取消</m-button>
  13. <m-button type="primary" @click="dialogVisible = false">确定</m-button>
  14. </span>
  15. </template>
  16. </m-dialog>
  17. </template>
  18. <script setup>
  19. import { ref } from 'vue-demi'
  20. const dialogVisible = ref(false)
  21. </script>