123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <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"
- ></uvText>
- </template>
- <script>
- import uvText from "../u-text/u-text.vue";
- import { props } from "../u-text/props.js";
- import { mpMixin } from '../../libs/mixin/mpMixin.js'
- import { mixin } from '../../libs/mixin/mixin.js'
- export default {
- name: "u--text",
- mixins: [mpMixin, mixin, props,],
- components: {
- uvText,
- },
- };
- </script>
|