Files
cmanager/src/views/manage/mission/supplyDemand/index.vue

39 lines
526 B
Vue
Raw Normal View History

2024-04-25 17:01:14 +08:00
<template>
<div>
<basic-container>
12312
</basic-container>
<basic-container>
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
ref="crud"
v-model="form"
></avue-crud>
</basic-container>
</div>
</template>
<script>
export default {
name: 'supplyDemand',
data() {
return {
loading: false,
data: [],
form: {},
}
},
computed: {
option() {
return {}
}
}
}
</script>
<style>
</style>