add alpha branch
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import type { App } from "vue";
|
||||
import Component from "./index.vue";
|
||||
import type { IDefineComponent } from "../type/index";
|
||||
|
||||
Component.install = (app: App) => {
|
||||
app.component(Component.name || "LayTransfer", Component);
|
||||
app.component(Component.name, Component);
|
||||
};
|
||||
|
||||
export default Component as IDefineComponent;
|
||||
export default Component;
|
||||
|
||||
@@ -3,10 +3,11 @@ export default {
|
||||
name: "LayTransfer",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import "./index.less";
|
||||
import { defineProps, Ref, ref, useSlots, watch } from "vue";
|
||||
import { Recordable } from "../type";
|
||||
import { Recordable } from "../../types";
|
||||
|
||||
const slot = useSlots();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user