22 lines
313 B
Vue
22 lines
313 B
Vue
<template>
|
|
<div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
// import LayoutRow from "../layout/LayoutRow.vue";
|
|
// import LayoutCol from "../layout/LayoutCol.vue";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
},
|
|
props: {
|
|
},
|
|
});
|
|
</script>
|