鏡像自
https://github.com/ialley-workshop-open/uni-halo.git
已同步 2026-06-12 13:19:31 +08:00
31 行
383 B
Vue
31 行
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>
|