| 1 | import { ref, h, createApp } from 'vue' |
| 2 | |
| 3 | export interface AlertOptions { |
| 4 | title: string |
| 5 | message: string |
| 6 | confirmText?: string |
| 7 | } |
| 8 | |
| 9 | const visible = ref(false) |
| 10 | const options = ref<AlertOptions>({ title: '', message: '' }) |
nothing calls this directly
no outgoing calls
no test coverage detected