mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
24 lines
386 B
Vue
24 lines
386 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>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|