docs_vue2/one/docs/demo/popover/foot.vue
xiaodemen 0b7c8fd460 docs: add docs for Accordion/Collapse/Popover
Change-Id: Ibb023741445c134973a2ea993c498f02d83f3a98
2021-11-20 13:25:23 +08:00

49 lines
802 B
Vue

<template>
<article>
<section>
<veui-button ref="btn1">
按钮1
</veui-button>
<veui-button ref="btn2">
按钮2
</veui-button>
<veui-popover
target="btn1"
title="Popover Title"
ok-label=""
cancel-label=""
foot
>
This is a popover.
</veui-popover>
<veui-popover
target="btn2"
title="Popover Title"
foot
>
This is a popover.
<template #foot>
Popover foot
</template>
</veui-popover>
</section>
</article>
</template>
<script>
import { Popover, Button } from 'veui'
export default {
components: {
'veui-button': Button,
'veui-popover': Popover
}
}
</script>
<style lang="less" scoped>
.veui-button + .veui-button {
margin-left: 200px;
}
</style>