index.vue 362 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://qqyxt.bozedu.net/page/courseList.html?mod=live_class','_blank');
  14. this.$router.back();
  15. }
  16. },
  17. mounted() {
  18. this.openLink();
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>