|
5 mesiacov pred | |
---|---|---|
.. | ||
AreaSelect | 7 mesiacov pred | |
AreaSelectPanel | 7 mesiacov pred | |
CtDialog | 5 mesiacov pred | |
CtForm | 7 mesiacov pred | |
CtPagination | 10 mesiacov pred | |
CtSearch | 10 mesiacov pred | |
CtTable | 5 mesiacov pred | |
CtVuetify | 1 rok pred | |
DatePicker | 7 mesiacov pred | |
Echarts | 10 mesiacov pred | |
Empty | 10 mesiacov pred | |
Enterprise | 5 mesiacov pred | |
FormUI | 6 mesiacov pred | |
IFrame | 5 mesiacov pred | |
ImgCropper | 9 mesiacov pred | |
Loading | 9 mesiacov pred | |
Position | 5 mesiacov pred | |
PositionLongStrip | 5 mesiacov pred | |
PreviewImg | 6 mesiacov pred | |
ProgressBar | 8 mesiacov pred | |
QrCode | 6 mesiacov pred | |
Recharge | 9 mesiacov pred | |
SvgIcon | 9 mesiacov pred | |
Upload | 6 mesiacov pred | |
VerificationCode | 6 mesiacov pred | |
Verifition | 6 mesiacov pred | |
headSearch | 6 mesiacov pred | |
industryTypeCard | 7 mesiacov pred | |
jobTypeCard | 7 mesiacov pred | |
pay | 6 mesiacov pred | |
personalRecharge | 6 mesiacov pred | |
README.md | 1 rok pred |
Vue template files in this folder are automatically imported.
Importing is handled by unplugin-vue-components. This plugin automatically imports .vue
files created in the src/components
directory, and registers them as global components. This means that you can use any component in your application without having to manually import it.
The following example assumes a component located at src/components/MyComponent.vue
:
<template>
<div>
<MyComponent />
</div>
</template>
<script lang="ts" setup>
//
</script>
When your template is rendered, the component's import will automatically be inlined, which renders to this:
<template>
<div>
<MyComponent />
</div>
</template>
<script lang="ts" setup>
import MyComponent from '@/components/MyComponent.vue'
</script>