2021-04-02 21:50:55 +08:00
|
|
|
|
<template>
|
2021-11-12 00:02:58 +08:00
|
|
|
|
<div id="options">
|
|
|
|
|
<div class="text">
|
|
|
|
|
哈哈,让你发现了
|
|
|
|
|
</div>
|
|
|
|
|
<div class="text">
|
|
|
|
|
不过这里什么都没有
|
|
|
|
|
</div>
|
2021-04-03 20:27:39 +08:00
|
|
|
|
</div>
|
2021-04-02 21:50:55 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import {Component, Vue} from "vue-property-decorator";
|
|
|
|
|
@Component({
|
2021-11-12 00:02:58 +08:00
|
|
|
|
components: {PuzzleBoard},
|
2021-04-02 21:50:55 +08:00
|
|
|
|
})
|
|
|
|
|
export default class Index extends Vue {
|
|
|
|
|
name: string = "index";
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2021-11-12 00:02:58 +08:00
|
|
|
|
<style scoped lang="less">
|
|
|
|
|
#options {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2021-04-02 21:50:55 +08:00
|
|
|
|
|
2021-11-12 00:02:58 +08:00
|
|
|
|
.text {
|
|
|
|
|
user-select: none;
|
|
|
|
|
font-size: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2021-04-02 21:50:55 +08:00
|
|
|
|
</style>
|