农经大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 line
484 B

  1. export default {
  2. props: {
  3. data: {
  4. type: Array,
  5. default: function () {
  6. return [
  7. {
  8. id: '1',
  9. name: '选项一'
  10. },
  11. {
  12. id: '2',
  13. name: '选项二'
  14. }
  15. ]
  16. }
  17. },
  18. },
  19. data () {
  20. return {
  21. currentClick: '1'
  22. };
  23. },
  24. created () {
  25. },
  26. methods: {
  27. tabClick (info) {
  28. this.currentClick = info.id
  29. this.$emit('change', info)
  30. }
  31. }
  32. };