mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
22 lines
389 B
Markdown
22 lines
389 B
Markdown
# Raw Content
|
|
```html
|
|
<n-popover raw :show-arrow="false">
|
|
<template v-slot:activator>
|
|
<n-button>
|
|
Hover
|
|
</n-button>
|
|
</template>
|
|
<div
|
|
style="width: 100px; height: 100px; background-color: red; transform-origin: inherit;"
|
|
>
|
|
Who kicks a hole in the sky so the heaven cry over me.
|
|
</div>
|
|
</n-popover>
|
|
```
|
|
```js
|
|
export default {
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
``` |