var share = { data: function(){ return { 'selectCourses': [], } }, mounted() { this.getCourses() }, components: { 'course-table': courseTable, 'choose-department': chooseDepartment, 'course-anslist': coursesList }, methods: { 'getCourses': function(){ uid = this.$route.params.id var main = this fetch('https://api.snsd0805.com/shared/'+uid) .then(function(response){ return response.json() }).then(function(jsonData){ main.selectCourses = JSON.parse(jsonData['data']) }) .catch(function(err){ alert("錯誤: "+err) }) } }, template: `


跟你分享我的課表

安排我自己的課表
` }