38 lines
470 B
Vue
38 lines
470 B
Vue
![]() |
<template>
|
||
|
<view class="container">
|
||
|
<layout>
|
||
|
|
||
|
</layout>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import layout from '@/pages/tabbar/components/mine/layout.vue';
|
||
|
export default {
|
||
|
components: {
|
||
|
layout,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.container {
|
||
|
background-color: #fafafa;
|
||
|
height: calc(100vh);
|
||
|
padding-bottom: env(safe-area-inset-bottom);
|
||
|
}
|
||
|
|
||
|
|
||
|
</style>
|