初始化页面结构

This commit is contained in:
Andy Leong
2024-01-09 17:27:03 +08:00
parent eddb210dc5
commit ad07452795
11 changed files with 78 additions and 117 deletions

21
src/components/Rule.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<div class="RulePage">
规则页面
</div>
</template>
<script setup>
import { debounceTap } from '@/plugins'
// 页面配置初始化
const emit = defineEmits(["RulePage"]);
</script>
<style lang="scss" scoped>
.RulePage {
@include fixed();
background-color: azure;
}
</style>