12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="home">
- 首页
- <view class="box"></view>
- <icon type="success" size="26"/>
- <icon type="clear" size="26"/>
- <icon type="search" size="26"/>
- <h1 class="h1">你好</h1>
- <text space='emsp'>今 三</text>
- <h2>你好</h2>
- <text space="nbsp">今 三</text>
- <h2>你好</h2>
- <text space="ensp">今 三</text>
-
- </view>
- </template>
- <script>
- </script>
- <style scoped lang="scss">
- @import url("../../test.css");
- text {
- color: $uni-color-primary;
- }
- .box {
- width: 300rpx;
- height: 300rpx;
- background: #00f;
- }
- </style>
|