uni-halo/pagesA/love/love.vue
2022-12-06 15:08:29 +08:00

23 lines
390 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="app-page bg-white flex flex-center"><text class="text-bg-gradient-red-accent-b">祝有情人👩👨终成眷属</text></view>
</template>
<script>
export default {
data() {
return {};
},
onLoad() {
this.fnSetPageTitle('恋爱日记');
},
methods: {}
};
</script>
<style scoped lang="scss">
.app-page {
width: 100vw;
height: 100vh;
}
</style>