|
hace 3 semanas | |
---|---|---|
.. | ||
AreaSelect | hace 7 meses | |
AreaSelectPanel | hace 7 meses | |
BackTop | hace 1 mes | |
CtDialog | hace 5 meses | |
CtFilter | hace 2 meses | |
CtForm | hace 1 mes | |
CtPagination | hace 10 meses | |
CtSearch | hace 11 meses | |
CtTable | hace 4 meses | |
CtVuetify | hace 1 año | |
DatePicker | hace 7 meses | |
Echarts | hace 10 meses | |
Empty | hace 11 meses | |
Enterprise | hace 1 mes | |
FormUI | hace 1 mes | |
IFrame | hace 5 meses | |
ImgCropper | hace 9 meses | |
Knowledge | hace 1 mes | |
Loading | hace 1 mes | |
Position | hace 1 mes | |
PositionLongStrip | hace 1 mes | |
PreviewImg | hace 3 meses | |
ProgressBar | hace 8 meses | |
QrCode | hace 6 meses | |
Recharge | hace 9 meses | |
SvgIcon | hace 9 meses | |
Upload | hace 2 meses | |
VerificationCode | hace 3 semanas | |
Verifition | hace 6 meses | |
headSearch | hace 1 mes | |
industryTypeCard | hace 8 meses | |
jobTypeCard | hace 7 meses | |
pay | hace 1 mes | |
personalRecharge | hace 3 meses | |
README.md | hace 1 año |
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>