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