35 lines
401 B
Vue
35 lines
401 B
Vue
|
|
<template>
|
||
|
|
<div class="AppOnlineClass">
|
||
|
|
在线课堂
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
current: 1,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onLoad() {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
methods: {
|
||
|
|
getList() {
|
||
|
|
console.log('222');
|
||
|
|
}
|
||
|
|
},
|
||
|
|
// onReachBottom() {
|
||
|
|
// this.current ++;
|
||
|
|
// this.getList()
|
||
|
|
// },
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" socped>
|
||
|
|
.AppOnlineClass {
|
||
|
|
|
||
|
|
}
|
||
|
|
</style>
|