![]() |
hai 5 meses | |
---|---|---|
.. | ||
AreaSelect | hai 7 meses | |
AreaSelectPanel | hai 7 meses | |
CtDialog | hai 5 meses | |
CtForm | hai 7 meses | |
CtPagination | hai 10 meses | |
CtSearch | hai 11 meses | |
CtTable | hai 5 meses | |
CtVuetify | hai 1 ano | |
DatePicker | hai 7 meses | |
Echarts | hai 10 meses | |
Empty | hai 11 meses | |
Enterprise | hai 5 meses | |
FormUI | hai 5 meses | |
IFrame | hai 5 meses | |
ImgCropper | hai 9 meses | |
Loading | hai 9 meses | |
Position | hai 5 meses | |
PositionLongStrip | hai 6 meses | |
PreviewImg | hai 5 meses | |
ProgressBar | hai 8 meses | |
QrCode | hai 6 meses | |
Recharge | hai 9 meses | |
SvgIcon | hai 9 meses | |
Upload | hai 5 meses | |
VerificationCode | hai 6 meses | |
Verifition | hai 6 meses | |
headSearch | hai 6 meses | |
industryTypeCard | hai 8 meses | |
jobTypeCard | hai 7 meses | |
pay | hai 6 meses | |
personalRecharge | hai 6 meses | |
README.md | hai 1 ano |
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>