25 lines
348 B
Vue
25 lines
348 B
Vue
<template>
|
||
<view class="g-footer">
|
||
<text class="fs-28 text-secondary">
|
||
- 到底啦,别滑了 -
|
||
</text>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'Gfooter',
|
||
data() {
|
||
return {};
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.g-footer {
|
||
text-align: center;
|
||
padding: 20rpx 0;
|
||
align-items: center;
|
||
}
|
||
</style>
|