♻️: rename inputTag to tagInput

This commit is contained in:
sight
2022-08-06 09:25:11 +08:00
parent 24b2cbd143
commit d30a3b0012
4 changed files with 50 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
export default {
name: "LayInputTag",
name: "LayTagInput",
};
</script>
<script lang="ts" setup>

View File

@@ -89,6 +89,7 @@ import LayPageHeader from "./component/pageHeader/index";
import LayCascader from "./component/cascader/index";
import LayAffix from "./component/affix/index";
import LayTag from "./component/tag/index";
import LayTagInput from "./component/tagInput/index";
import LayConfigProvider from "./provider";
import { InstallOptions } from "./types";
@@ -176,6 +177,7 @@ const components: Record<string, Plugin> = {
LayCascader,
LayAffix,
LayTag,
LayTagInput,
};
const install = (app: App, options?: InstallOptions): void => {
@@ -270,6 +272,7 @@ export {
LayCascader,
LayAffix,
LayTag,
LayTagInput,
install,
};