refactor(components): remove unused BasicInput, Iconify, and Test componentsRemove the unused BasicInput, Iconify, and Test components to clean up the codebase.

This commit is contained in:
h_mo 2024-06-18 22:33:38 +08:00
parent 862ee17c88
commit 743a0219b3
3 changed files with 0 additions and 73 deletions

View File

@ -1,31 +0,0 @@
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'BasicInput',
props: {
type: {
type: String,
default: 'text',
},
name: {
type: String,
default: '',
},
value: {
type: String,
default: '',
},
},
setup(_props) {
// const _props = props;
return {};
},
});
</script>
<template>
<input :type="type" :name="name" :value="value">
</template>
<style lang="scss" scoped></style>

View File

@ -1,26 +0,0 @@
<script lang="ts" setup>
import type { IconProps } from '@iconify/vue';
/**
* @name Iconify
* @desc 图标
* @docs https://iconify.design/docs/icon-components/vue/
* @example <Iconify icon="ant-design:home-outlined" />
*/
import { Icon } from '@iconify/vue';
interface Props {
icon: string
size?: string | number
width?: IconProps['width']
height?: IconProps['height']
color?: IconProps['color']
}
const props = withDefaults(defineProps<Props>(), {});
</script>
<template>
<Icon v-bind="props" />
</template>
<style lang="scss" scoped></style>

View File

@ -1,16 +0,0 @@
<script lang="ts" setup>
const props = defineProps({
text: {
type: String,
default: 'text',
},
});
const text = `TEXT: ${props.text}`;
</script>
<template>
<view>{{ text }}</view>
</template>
<style lang="scss" scoped></style>