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