19 lines
216 B
Vue
19 lines
216 B
Vue
|
<template>
|
||
|
<div></div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "ReportDesign",
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
created() {},
|
||
|
mounted() {},
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|