rich-text.uvue 979 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<template>
  <view>
W
微调  
wanganxp 已提交
3
    <page-head title="rich-text"></page-head>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
4 5
    <view class="uni-padding-wrap uni-common-mt">
      <view class="uni-btn-v">
W
微调  
wanganxp 已提交
6 7 8
        <navigator url="/pages/component/rich-text/rich-text-tags">
          <button type="primary">rich-text渲染单个HTML标签示例</button>
        </navigator>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
9 10
      </view>
      <view class="uni-btn-v">
W
微调  
wanganxp 已提交
11
        <navigator url="/pages/component/rich-text/rich-text-complex">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
12
          <button type="primary">rich-text渲染复杂HTML示例</button>
W
微调  
wanganxp 已提交
13
        </navigator>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
14
      </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
15 16 17 18 19 20 21
      <view class="uni-title">
        <text class="uni-subtitle-text">selectable</text>
      </view>
      <view class="text-box">
        <rich-text :selectable="true"
          nodes="<span>hello uni-app x!</span><br/><span>uni-app x,终极跨平台方案</span>"></rich-text>
      </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
22 23 24 25 26
    </view>
  </view>
</template>

<script>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
27

DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
28 29 30
</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
31 32 33 34 35
  .text-box {
    padding: 40rpx 0;
    background-color: white;
  }
</style>