23 lines
230 B
Vue
23 lines
230 B
Vue
|
|
<template>
|
||
|
|
<section class="dmAdd">
|
||
|
|
|
||
|
|
</section>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "dmAdd",
|
||
|
|
data() {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
created() {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.dmAdd {
|
||
|
|
}
|
||
|
|
</style>
|