19 lines
229 B
Vue
19 lines
229 B
Vue
|
|
<template>
|
|
<div>
|
|
<syzb/>
|
|
<dlzb/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Syzb from "./Syzb.vue";
|
|
import Dlzb from "./Dlzb.vue";
|
|
export default {
|
|
components: {Syzb,Dlzb}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|