12345678910111213141516171819202122232425262728 |
- <template>
- <div>空中课堂</div>
- </template>
- <script>
- export default {
- name: "index",
- data() {
- return{
- }
- },
- methods:{
- openLink() {
- window.open('https://qqyxt.bozedu.net/page/courseList.html?mod=live_class','_blank');
- this.$router.back();
- }
- },
- mounted() {
- this.openLink();
- }
- }
- </script>
- <style scoped>
- </style>
|