新年的第一次提交

This commit is contained in:
就眠儀式
2022-02-01 07:23:20 +08:00
parent 5fe02df5db
commit 126d20bc3f
77 changed files with 1393 additions and 1297 deletions

8
src/provider/index.ts Normal file
View File

@@ -0,0 +1,8 @@
import type { App } from "vue";
import Component from "./index.vue";
Component.install = (app: App) => {
app.component(Component.name, Component);
};
export default Component;

19
src/provider/index.vue Normal file
View File

@@ -0,0 +1,19 @@
<script lang="ts">
export default {
name: "lay-config-provider"
}
</script>
<script setup lang="ts">
// 切换主题
// 切换语言
</script>
<template>
<div class="lay-config-provider">
<slot></slot>
</div>
</template>