app-text.vue 407 B

12345678910111213141516171819
  1. <template>
  2. <text :style="{'font-size': `${fontSize ? fontSize : 32}rpx`, 'color': `${color}`}" :class="[theme ? `${theme}-color` : '']">
  3. <slot></slot>
  4. </text>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app-text',
  9. props: {
  10. theme: String,
  11. fontSize: String,
  12. color: String,
  13. }
  14. }
  15. </script>
  16. <style scoped lang="scss">
  17. </style>