naive-ui/demo/documentation/components/tooltip/zhCN/body-style.demo.md

25 lines
589 B
Markdown
Raw Normal View History

2020-09-10 15:55:31 +08:00
# 主体样式
有时候设定主体样式还是挺有用的。
2020-01-30 17:38:14 +08:00
```html
2020-09-10 15:55:31 +08:00
<n-tooltip :body-style="{ maxWidth: '400px' }" trigger="click">
2020-01-30 17:38:14 +08:00
<template v-slot:activator>
<n-button>
加州女孩
</n-button>
</template>
我希望她们都是加州女孩,我希望她们都是加州女孩,我希望她们都是加州女孩
</n-tooltip>
2020-09-10 15:55:31 +08:00
<n-tooltip :body-style="{ maxWidth: '400px' }" trigger="click">
2020-01-30 17:38:14 +08:00
<template v-slot:activator>
<n-button>
加州女孩
</n-button>
</template>
我希望...
</n-tooltip>
```
```css
.n-button {
margin: 0 12px 8px 0;
}
```