mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
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:
parent
862ee17c88
commit
743a0219b3
@ -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>
|
|
@ -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>
|
|
@ -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>
|
|
Loading…
x
Reference in New Issue
Block a user