12345678910111213141516171819202122232425262728293031 |
- <template>
- <kk-button text @click="centerDialogVisible = true">
- Click to open the Dialog
- </kk-button>
- <kk-dialog v-model="centerDialogVisible" title="Warning" width="30%" center>
- <span>
- It should be noted that the content will not be aligned in center by
- default
- </span>
- <template #footer>
- <span class="dialog-footer">
- <kk-button @click="centerDialogVisible = false">Cancel</kk-button>
- <kk-button type="primary" @click="centerDialogVisible = false">
- Confirm
- </kk-button>
- </span>
- </template>
- </kk-dialog>
- </template>
- <script lang="ts" setup>
- import { ref } from 'vue'
- import { KkButton, KkDialog } from 'kankan-components'
- const centerDialogVisible = ref(false)
- </script>
- <style scoped>
- .dialog-footer button:first-child {
- margin-right: 10px;
- }
- </style>
|