You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
333 B
18 lines
333 B
1 year ago
|
<template>
|
||
|
<BasicContainer :option="option">
|
||
|
<template #head>123</template>
|
||
|
|
||
|
<template #body>333</template>
|
||
|
</basicContainer>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { ref, reactive } from 'vue';
|
||
|
const option = reactive({
|
||
|
title: '提货批次列表',
|
||
|
haveData: true
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
</style>
|