30 lines
586 B
Vue
30 lines
586 B
Vue
<template>
|
|
<div class="root">
|
|
<pass-time-label :timestamp="1786694772700" underline />
|
|
<br>
|
|
<pass-time-label :timestamp="1786694772700" only-date />
|
|
<br>
|
|
<pass-time-label :timestamp="1786694772700" only-time />
|
|
<copyright />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {axios, Copyright, SettingMapper} from "timi-web";
|
|
import CommonAPI from "../src/api/CommonAPI";
|
|
import PassTimeLabel from "../src/components/passtime-label/index.vue";
|
|
|
|
onMounted(async () => {
|
|
})
|
|
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.root {
|
|
width: 80%;
|
|
|
|
.sp {
|
|
height: 520px;
|
|
}
|
|
}
|
|
</style>
|