mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-13 19:22:48 +00:00
15 lines
289 B
Vue
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> |