作者:管理员 历史版本:1 最后编辑:龚清 更新时间:2024-11-20 15:41
基础的配置
页面代码
ibps-link基本默认的配置代码展示。直接写入模板内,传入对应得属性值即可。
<template>
<div>
...
<ibps-link
v-else-if="fieldType==='hyperlink'|| fieldType==='button'"
:text="hyperlinkText"
:link="fieldOptions.link"
:show-type="fieldOptions.showType"
:text-type="fieldOptions.textType"
:link-type="fieldOptions.linkType"
:type="fieldOptions.type"
:icon="fieldOptions.icon?'ibps-icon-'+fieldOptions.icon:''"
:position="fieldOptions.position"
/>
...
</div>
</template>
详细的请查看API进行使用。