Tabs.vue 370 B

123456789101112131415161718192021
  1. <template>
  2. <u-tabs :activeStyle="activeStyle" :list="tabs" @change="(tab) => $emit('change', tab)"></u-tabs>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. tabs: Array
  8. },
  9. data () {
  10. return {
  11. activeStyle: {
  12. color: '#303133',
  13. fontSize: '20px',
  14. fontWeight: 'bold',
  15. transform: 'scale(1.05)'
  16. }
  17. }
  18. }
  19. }
  20. </script>