mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-02 07:54:23 +08:00
761 B
761 B
layout |
---|
templateLayout |
<template>
<Tabs>
<Tab :label="copm(1)">
<p>1</p>
</Tab>
<Tab :label="copm(2)">
<p>2</p>
</Tab>
<Tab :label="copm(3)">
<p>3</p>
</Tab>
</Tabs>
</template>
<script>
export default {
data(){
return {
copm: function(i){
return new Vue({
data: function(){
return{
i
}
},
render(h){
return h("span", {
}, [`标签${this.i}`])
}
})
}
}
}
}
</script>