mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
405 B
405 B
填充内容
你可以把其他内容包裹在 Spin 中。
<n-space vertical>
<n-spin :show="show">
<n-alert title="啦啦啦" type="success">
明天再打开行李箱。宝贝,挂电话啦。
</n-alert>
</n-spin>
<n-button @click="show = !show">点击来转圈</n-button>
</n-space>
export default {
data () {
return {
show: false
}
}
}