20 lines
274 B
Vue
20 lines
274 B
Vue
<template>
|
|
<view class="message-content">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.message-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background: linear-gradient(to bottom, #D6EDD8 0%, #F4E2D8 100%);
|
|
}
|
|
|
|
|
|
</style> |