index.vue 367 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div>课程表</div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "index",
  7. data() {
  8. return{
  9. }
  10. },
  11. methods:{
  12. openLink() {
  13. window.open('https://ycszxy.bozedu.net/page/school_service/school_schedule.html','_blank');
  14. this.$router.back();
  15. }
  16. },
  17. mounted() {
  18. this.openLink();
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>