我的最终目标是将Bootstrap 4 Popover添加到完整日历以显示日历事件描述,因为根据视图,完整日历会切断标题/描述。由于完整日历基于我传递给它的事件支持生成所有内容,因此我无法弄清楚如何添加任何类型的弹出窗口。 (我可能用jQuery做到这一点,但我真的试图从项目中删除jQuery以使我的构建大小更小)
关于popstrap vue的正常使用情况,这里有很好的文档:https://bootstrap-vue.js.org/docs/directives/popover/
不幸的是,完整日历不提供使用Boostrap-Vue文档中描述的任何方法的方法。我尝试了一件事,但没有奏效就是这个
<template>
<full-calendar
:events="events"
@eventRender="eventRender"
></full-calendar>
</template>
<script>
import FullCalendar from '@fullcalendar/vue'
export default{
data(){
events: [...],
},
methods: {
eventRender(info){
info.el.setAttribute('v-b-popover.hover.top', 'Popover!')
}
}
}
</script>
这确实将属性添加到HTML中,但我认为它是在Vue处理DOM之后,因为它不会添加Popover。
有没有其他方法可以使用传递给eventRender函数的info
对象的参数来添加一个Popover? (eventRender函数文档:https://fullcalendar.io/docs/eventRender)
好的,花了一些时间阅读Bootstrap-Vue代码,然后玩了一下,我就能让它运转起来!
这是PopOver工作的组件的精简版本:
<template>
<full-calendar
:events="events"
@eventRender="eventRender"
></full-calendar>
</template>
<script>
import FullCalendar from '@fullcalendar/vue'
import PopOver from 'bootstrap-vue/src/utils/popover.class'
export default{
data(){
events: [...],
},
methods: {
eventRender(info){
// CONFIG FOR THE PopOver CLASS
const config = {
title: 'I am a title',
content: "This text will show up in the body of the PopOver",
placement: 'auto', // can use any of Popover's placements(top, bottom, right, left etc)
container: 'null', // can pass in the id of a container here, other wise just appends to body
boundary: 'scrollParent',
boundaryPadding: 5,
delay: 0,
offset: 0,
animation:true,
trigger: 'hover', // can be 'click', 'hover' or 'focus'
html: false, // if you want HTML in your content set to true.
}
const target = info.el;
const toolpop = new PopOver(target, config, this.$root);
console.log('TOOLPOP', toolpop);
},
}
}
</script>
我希望这能够帮助其他人在路上!