组件介绍
1. 链接组件功能为点击元素打开浏览器访问指定的地址;
2. 目前仅支持安卓平台 ( 组件内部已添加条件编译 );
3. 使用插槽方式展示内容,可以更自由地展示链接内容 ( 图片、文本等元素 );
运行图示
组件属性
属性 | 类型 | 默认值 | 作用 |
---|
href | String | 空字符 | 连接地址 |
演示代码
<template>
<view class="ux-body ux-flex1 ux-page-color">
<text class="ux-h6 ux-color-grey ux-mt-large">组件演示</text>
<view class="ux-demo ux-flex ux-row ux-wrap">
<text class="ux-text">请</text>
<ux-link
href="https://www.dcloud.io/">
<text
style="margin:0 10rpx;"
class="ux-text ux-primary-color">点击这里</text>
</ux-link>
<text class="ux-text">打开DCloud 官网</text>
</view>
</view>
</template>
<script lang="uts">
export default {
mounted:function(){
}
}
</script>
<style scoped>
</style>