ct-mattress/pages/my.vue

31 lines
274 B
Vue
Raw Normal View History

2023-12-05 16:45:28 +08:00
<template>
2024-01-27 16:37:52 +08:00
<view class="page">
2024-08-28 11:04:46 +08:00
333
2023-12-05 16:45:28 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-01-27 16:37:52 +08:00
bgc: {
2024-08-28 11:04:46 +08:00
backgroundColor: "#4C97E7",
2024-01-27 16:37:52 +08:00
},
2024-08-28 11:04:46 +08:00
2024-01-23 19:15:52 +08:00
}
},
methods: {
2024-08-28 11:04:46 +08:00
2024-01-23 19:15:52 +08:00
}
}
2023-12-05 16:45:28 +08:00
</script>
2024-08-28 11:04:46 +08:00
<style lang="scss">
page {
background-color: #fff;
2024-01-27 16:37:52 +08:00
}
2024-01-23 19:15:52 +08:00
2024-08-28 11:04:46 +08:00
</style>