mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
38 lines
441 B
Vue
38 lines
441 B
Vue
<template>
|
|
<div class="user">
|
|
<SearchBox></SearchBox>
|
|
|
|
<div class="table-content">
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
export default {
|
|
name: '',
|
|
components:{
|
|
SearchBox
|
|
},
|
|
props: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods:{
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |