2023-06-21 16:55:50 +08:00

15 lines
289 B
Vue

<template>
<view class="fixed-group">
</view>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
const props = defineProps(['data']);
const data = computed(() => {
return props.data.value;
})
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>