初始化页面结构
This commit is contained in:
21
src/components/Rule.vue
Normal file
21
src/components/Rule.vue
Normal 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>
|
||||
Reference in New Issue
Block a user