home.vue 606 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="home">
  3. 首页
  4. <view class="box"></view>
  5. <icon type="success" size="26"/>
  6. <icon type="clear" size="26"/>
  7. <icon type="search" size="26"/>
  8. <h1 class="h1">你好</h1>
  9. <text space='emsp'>今 三</text>
  10. <h2>你好</h2>
  11. <text space="nbsp">今 三</text>
  12. <h2>你好</h2>
  13. <text space="ensp">今 三</text>
  14. </view>
  15. </template>
  16. <script>
  17. </script>
  18. <style scoped lang="scss">
  19. @import url("../../test.css");
  20. text {
  21. color: $uni-color-primary;
  22. }
  23. .box {
  24. width: 300rpx;
  25. height: 300rpx;
  26. background: #00f;
  27. }
  28. </style>