u--text.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <uvText
  3. :type="type"
  4. :show="show"
  5. :text="text"
  6. :prefixIcon="prefixIcon"
  7. :suffixIcon="suffixIcon"
  8. :mode="mode"
  9. :href="href"
  10. :format="format"
  11. :call="call"
  12. :openType="openType"
  13. :bold="bold"
  14. :block="block"
  15. :lines="lines"
  16. :color="color"
  17. :size="size"
  18. :iconStyle="iconStyle"
  19. :margin="margin"
  20. :lineHeight="lineHeight"
  21. :align="align"
  22. :wordWrap="wordWrap"
  23. :customStyle="customStyle"
  24. @click="$emit('click')"
  25. ></uvText>
  26. </template>
  27. <script>
  28. /**
  29. * 此组件存在的理由是,在nvue下,u-text被uni-app官方占用了,u-text在nvue中相当于input组件
  30. * 所以在nvue下,取名为u--input,内部其实还是u-text.vue,只不过做一层中转
  31. * 不使用v-bind="$attrs",而是分开独立写传参,是因为微信小程序不支持此写法
  32. */
  33. import uvText from "../u-text/u-text.vue";
  34. import props from "../u-text/props.js";
  35. export default {
  36. name: "u--text",
  37. mixins: [uni.$u.mpMixin, props, uni.$u.mixin],
  38. components: {
  39. uvText,
  40. },
  41. };
  42. </script>