mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
38 lines
619 B
Vue
38 lines
619 B
Vue
<template>
|
||
<div id="options">
|
||
<div class="text">
|
||
哈哈,让你发现了
|
||
</div>
|
||
<div class="text">
|
||
不过这里什么都没有
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import {Component, Vue} from "vue-property-decorator";
|
||
@Component({
|
||
components: {PuzzleBoard},
|
||
})
|
||
export default class Index extends Vue {
|
||
name: string = "index";
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="less">
|
||
#options {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
|
||
.text {
|
||
user-select: none;
|
||
font-size: 40px;
|
||
}
|
||
|
||
}
|
||
</style>
|