|
3 nedēļas atpakaļ | |
---|---|---|
.. | ||
AreaSelect | 7 mēneši atpakaļ | |
AreaSelectPanel | 7 mēneši atpakaļ | |
BackTop | 1 mēnesi atpakaļ | |
CtDialog | 5 mēneši atpakaļ | |
CtFilter | 2 mēneši atpakaļ | |
CtForm | 1 mēnesi atpakaļ | |
CtPagination | 10 mēneši atpakaļ | |
CtSearch | 11 mēneši atpakaļ | |
CtTable | 4 mēneši atpakaļ | |
CtVuetify | 1 gadu atpakaļ | |
DatePicker | 7 mēneši atpakaļ | |
Echarts | 10 mēneši atpakaļ | |
Empty | 11 mēneši atpakaļ | |
Enterprise | 1 mēnesi atpakaļ | |
FormUI | 1 mēnesi atpakaļ | |
IFrame | 5 mēneši atpakaļ | |
ImgCropper | 9 mēneši atpakaļ | |
Knowledge | 4 nedēļas atpakaļ | |
Loading | 1 mēnesi atpakaļ | |
Position | 1 mēnesi atpakaļ | |
PositionLongStrip | 1 mēnesi atpakaļ | |
PreviewImg | 3 mēneši atpakaļ | |
ProgressBar | 8 mēneši atpakaļ | |
QrCode | 6 mēneši atpakaļ | |
Recharge | 9 mēneši atpakaļ | |
SvgIcon | 9 mēneši atpakaļ | |
Upload | 2 mēneši atpakaļ | |
VerificationCode | 3 nedēļas atpakaļ | |
Verifition | 6 mēneši atpakaļ | |
headSearch | 4 nedēļas atpakaļ | |
industryTypeCard | 8 mēneši atpakaļ | |
jobTypeCard | 7 mēneši atpakaļ | |
pay | 1 mēnesi atpakaļ | |
personalRecharge | 3 mēneši atpakaļ | |
README.md | 1 gadu atpakaļ |
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>