mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +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>
|