mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
59 lines
1.1 KiB
Markdown
59 lines
1.1 KiB
Markdown
# Wrap
|
|
You can wrap a component inside spin. To match regular components's size, spin alse provides `in-small`, `in-medium` and `in-large` sizes.
|
|
```html
|
|
<div
|
|
>
|
|
<n-spin
|
|
style="display: inline-block; margin: 0 8px 12px 0;"
|
|
size="in-small"
|
|
:spinning="spinning"
|
|
>
|
|
<n-button size="small">
|
|
in small
|
|
</n-button>
|
|
</n-spin>
|
|
<n-spin
|
|
style="display: inline-block; margin: 0 8px 12px 0;"
|
|
size="in-medium"
|
|
:spinning="spinning"
|
|
>
|
|
<n-button size="medium">
|
|
in medium
|
|
</n-button>
|
|
</n-spin>
|
|
<n-spin
|
|
style="display: inline-block; margin: 0 8px 12px 0;"
|
|
size="in-large"
|
|
:spinning="spinning"
|
|
>
|
|
<n-button size="large">
|
|
in large
|
|
</n-button>
|
|
</n-spin>
|
|
<n-spin
|
|
:spinning="spinning"
|
|
>
|
|
<n-alert
|
|
title="La La La"
|
|
type="success"
|
|
>
|
|
Leave it till tomorrow to unpack my case. Honey disconnect the phone.
|
|
</n-alert>
|
|
</n-spin>
|
|
</div>
|
|
<n-button @click="spinning = !spinning">Click to Spin</n-button>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
spinning: false
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-alert {
|
|
margin: 0 0 12px 0;
|
|
}
|
|
``` |