1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <uvText
- :type="type"
- :show="show"
- :text="text"
- :prefixIcon="prefixIcon"
- :suffixIcon="suffixIcon"
- :mode="mode"
- :href="href"
- :format="format"
- :call="call"
- :openType="openType"
- :bold="bold"
- :block="block"
- :lines="lines"
- :color="color"
- :decoration="decoration"
- :size="size"
- :iconStyle="iconStyle"
- :margin="margin"
- :lineHeight="lineHeight"
- :align="align"
- :wordWrap="wordWrap"
- :customStyle="customStyle"
- @click="$emit('click')"
- ></uvText>
- </template>
- <script>
- import uvText from "../u-text/u-text.vue";
- import props from "../u-text/props.js";
- export default {
- name: "u--text",
- mixins: [uni.$u.mpMixin, props, uni.$u.mixin],
- components: {
- uvText,
- },
- };
- </script>
|