农经大屏
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.

36 lines
439 B

  1. export default {
  2. computed: {
  3. },
  4. props: {
  5. callBack: {
  6. type: Boolean,
  7. default: false
  8. },
  9. title: {
  10. type: String,
  11. default: '我是标题'
  12. },
  13. back: {
  14. type: Boolean,
  15. default: false
  16. },
  17. backName: {
  18. type: String,
  19. default: '返回'
  20. }
  21. },
  22. data () {
  23. return {
  24. };
  25. },
  26. created () {
  27. },
  28. methods: {
  29. back () {
  30. this.$router.go(-1)
  31. }
  32. }
  33. };