mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-26 19:46:47 +08:00
590 B
590 B
<template>
<Wb-button v-tooltip :tooltip-option="option14">component模版</Wb-button>
</template>
<script>
export default {
data: function(){
option14: {
direction: 'bottom',
align: "left",
component: new Vue({
data : function () {
return {
a: "组件",
}
},
template: "<Wb-button>我是{{a}}</Wb-button>"
})
},
}
}
</script>