32 lines
407 B
Vue
32 lines
407 B
Vue
<template>
|
|
<view class="home">
|
|
<h2>首页</h2>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
created() {
|
|
// this.getIndex();
|
|
},
|
|
methods: {
|
|
async getIndex() {
|
|
let res = await this.$http.home.index();
|
|
console.log(res);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
@import "@/assets/less/page/Home.less";
|
|
</style>
|