|
пре 3 недеља | |
---|---|---|
.. | ||
AreaSelect | пре 7 месеци | |
AreaSelectPanel | пре 7 месеци | |
BackTop | пре 1 месец | |
CtDialog | пре 5 месеци | |
CtFilter | пре 2 месеци | |
CtForm | пре 1 месец | |
CtPagination | пре 10 месеци | |
CtSearch | пре 11 месеци | |
CtTable | пре 4 месеци | |
CtVuetify | пре 1 година | |
DatePicker | пре 7 месеци | |
Echarts | пре 10 месеци | |
Empty | пре 11 месеци | |
Enterprise | пре 1 месец | |
FormUI | пре 1 месец | |
IFrame | пре 5 месеци | |
ImgCropper | пре 9 месеци | |
Knowledge | пре 4 недеља | |
Loading | пре 1 месец | |
Position | пре 1 месец | |
PositionLongStrip | пре 1 месец | |
PreviewImg | пре 3 месеци | |
ProgressBar | пре 8 месеци | |
QrCode | пре 6 месеци | |
Recharge | пре 9 месеци | |
SvgIcon | пре 9 месеци | |
Upload | пре 2 месеци | |
VerificationCode | пре 3 недеља | |
Verifition | пре 6 месеци | |
headSearch | пре 4 недеља | |
industryTypeCard | пре 8 месеци | |
jobTypeCard | пре 7 месеци | |
pay | пре 1 месец | |
personalRecharge | пре 3 месеци | |
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>