30 lines
349 B
Vue
30 lines
349 B
Vue
|
<template>
|
||
|
<div class="zhyxdalp">
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { computed, defineComponent } from 'vue';
|
||
|
import number from '@/filters/number';
|
||
|
|
||
|
export default defineComponent({
|
||
|
props: {
|
||
|
value: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
setup(props) {
|
||
|
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.zhyxdalp {
|
||
|
|
||
|
}
|
||
|
</style>
|