19 lines
289 B
Vue
19 lines
289 B
Vue
|
<template>
|
||
|
<view class="content">
|
||
|
|
||
|
<plantadd></plantadd>
|
||
|
</view>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import plantadd from "@/components/InformationAdd/plant.vue"
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.content {
|
||
|
background-color: #F4F4F4;
|
||
|
padding: 20rpx;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
</style>
|