提交 Github 地址, 更改 ChangeLog 格式

This commit is contained in:
就眠儀式
2021-12-14 01:15:36 +08:00
parent 9d829729f4
commit 6dd0bd791f
14 changed files with 94 additions and 187 deletions

View File

@@ -0,0 +1,9 @@
import type { App } from 'vue'
import Component from './index.vue'
import type { IDefineComponent } from '../type/index'
Component.install = (app: App) => {
app.component(Component.name || 'LayBacktop', Component)
}
export default Component as IDefineComponent

View File

@@ -0,0 +1,14 @@
<template>
<ul class="layui-fixbar">
<li class="layui-icon layui-fixbar-top" style="display: list-item"></li>
</ul>
</template>
<script lang="ts">
export default {
name: "LayBacktop"
}
</script>
<script lang="ts" setup>
</script>