![]() |
há 10 meses atrás | |
---|---|---|
.. | ||
AreaSelect | há 11 meses atrás | |
CtDialog | há 11 meses atrás | |
CtForm | há 11 meses atrás | |
CtPagination | há 11 meses atrás | |
CtSearch | há 11 meses atrás | |
CtVuetify | há 1 ano atrás | |
DatePicker | há 11 meses atrás | |
Empty | há 11 meses atrás | |
Enterprise | há 10 meses atrás | |
FormUI | há 11 meses atrás | |
Position | há 10 meses atrás | |
PositionLongStrip | há 10 meses atrás | |
PreviewImg | há 1 ano atrás | |
VerificationCode | há 11 meses atrás | |
headSearch | há 11 meses atrás | |
industryTypeCard | há 11 meses atrás | |
jobTypeCard | há 11 meses atrás | |
publicRecruitment | há 10 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>