mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-18 12:34:25 +08:00
20 lines
367 B
Vue
20 lines
367 B
Vue
|
<template>
|
||
|
<div style="height: 3000px;">
|
||
|
<div style="height: 400px;" />
|
||
|
<div style="margin-left: 400px;">
|
||
|
<n-popover trigger="click">
|
||
|
<template v-slot:activator>
|
||
|
<button>Activator</button>
|
||
|
</template>
|
||
|
<span>Out Out Out</span>
|
||
|
</n-popover>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
|
||
|
}
|
||
|
</script>
|