TextMiniCard.vue 269 B

1234567891011121314151617181920
  1. <template>
  2. <text-card-base v-bind="$attrs" ellipsis>
  3. </text-card-base>
  4. </template>
  5. <script>
  6. import TextCardBase from './TextCardBase'
  7. export default {
  8. name: 'TextMiniCard',
  9. components: {
  10. TextCardBase
  11. }
  12. }
  13. </script>
  14. <style lang="scss" scoped>
  15. </style>