38 lines
619 B
Vue
Raw Normal View History

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>
</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>