This commit is contained in:
syuilo
2021-09-21 04:09:28 +09:00
parent 78f95b5910
commit 85950f17fa
4 changed files with 14 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
<template>
<XCategory v-if="tab === 'category'"/>
<div :class="$style.root">
<XCategory v-if="tab === 'category'"/>
</div>
</template>
<script lang="ts">
@@ -26,5 +28,9 @@ export default defineComponent({
});
</script>
<style lang="scss" scoped>
<style lang="scss" module>
.root {
max-width: 1000px;
margin: 0 auto;
}
</style>