2020-12-25 18:15:04 +08:00
|
|
|
<template>
|
2020-12-31 11:47:52 +08:00
|
|
|
<Fashion />
|
2020-12-25 18:15:04 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-12-31 11:47:52 +08:00
|
|
|
import Fashion from "/@/views/layout/fashion.vue";
|
2020-12-25 18:15:04 +08:00
|
|
|
export default {
|
|
|
|
name: "layout",
|
2020-12-31 11:47:52 +08:00
|
|
|
components: { Fashion },
|
2020-12-25 18:15:04 +08:00
|
|
|
};
|
|
|
|
</script>
|