mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-13 16:13:22 +01:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
|
const Confirm = {
|
||
|
props: ['disabled'],
|
||
|
data: () => ({}),
|
||
|
methods: {
|
||
|
confirm () { this.$emit('confirm') },
|
||
|
cancel () { this.$emit('cancel') }
|
||
|
}
|
||
|
}
|
||
|
export default Confirm
|