1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-11 12:49:30 +08:00
Files
uni-halo/pagesB/settings/settings.vue
T
2022-12-06 15:08:29 +08:00

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>