19 lines
228 B
Vue
19 lines
228 B
Vue
<template>
|
|
<div class="root">
|
|
<copyright />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Copyright } from "timi-web";
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.root {
|
|
width: 80%;
|
|
|
|
.sp {
|
|
height: 520px;
|
|
}
|
|
}
|
|
</style>
|