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