mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2025-05-20 02:20:15 +09:00
31 lines
383 B
Vue
31 lines
383 B
Vue
<template>
|
|
<view class="app-page flex flex-col">
|
|
<view class="content"><!-- 内容区域 --></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
loading: 'loading',
|
|
result: null
|
|
};
|
|
},
|
|
created() {
|
|
this.fnGetData();
|
|
},
|
|
methods: {
|
|
fnGetData() {
|
|
// todo:
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.app-page {
|
|
width: 100vw;
|
|
}
|
|
</style>
|