mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-03 04:21:34 +08:00
20 lines
226 B
Vue
20 lines
226 B
Vue
<template>
|
|
<modal v-model="value" />
|
|
</template>
|
|
|
|
<script>
|
|
import modal from './modal'
|
|
|
|
export default {
|
|
components: {
|
|
modal
|
|
},
|
|
props: {
|
|
value: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|