naive-ui/demo/debugComponents/popoverDebug.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>