feat(projects): theme store完成

This commit is contained in:
Soybean
2022-01-08 20:49:21 +08:00
parent 10e4d81bd6
commit bf020a8258
56 changed files with 1205 additions and 164 deletions

View File

@ -0,0 +1,3 @@
import SoybeanLayout from './src/index.vue';
export default SoybeanLayout;

View File

@ -1,7 +1,7 @@
<template>
<header class="soybean-layout__footer" :style="style">
<footer class="soybean-layout__footer" :style="style">
<slot></slot>
</header>
</footer>
</template>
<script setup lang="ts">

View File

@ -1,3 +1,3 @@
import SoybeanLayout from './SoybeanLayout/index.vue';
import SoybeanLayout from './SoybeanLayout';
export { SoybeanLayout };