1
PC-20250623MANY\Administrator
2025-07-08 2f6a967029c293b550e5cb8e39de9ae08b345d44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
    <div class="watchlists">
        <tab-head></tab-head>
    </div>
</template>
 
<script>
import tabHead from "@/components/tabHead.vue";
export default {
    name: 'watchlists',
    components: {
        tabHead
    },
    data() {
        return {
            msg: 'watchlists'
        }
    }
}
</script>
 
<style lang="less" scoped>
.watchlists {
    font-size: 10vw;
    width: 100vw;
    min-height: 100vh;
    padding-bottom: 1.5rem;
 
}
</style>