30 lines
443 B
Vue
30 lines
443 B
Vue
<!--
|
|
filename: CollectionConfig.vue
|
|
author: liubin
|
|
date: 2023-10-30 10:09:03
|
|
description:
|
|
-->
|
|
|
|
<template>
|
|
<div class="equipment-collection-config">
|
|
collection config
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EquipmentCollectionConfig",
|
|
components: {},
|
|
props: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|