sub.vue 388 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <section class="sub">
  3. <tit :tname="name" />
  4. </section>
  5. </template>
  6. <script>
  7. import tit from '~/components/titles.vue'
  8. export default {
  9. components: {
  10. tit,
  11. },
  12. data() {
  13. return {
  14. name: '前期项目订阅管理'
  15. }
  16. },
  17. methods: {
  18. Subscribe(e) {
  19. this.$router.push({ path: '/bidding/sub?id=20' })
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>