|  Xiao_123
				
				c9964771bb
				首页职位类型样式调整 | před 11 měsíci | |
|---|---|---|
| .. | ||
| AreaSelect | před 1 rokem | |
| AreaSelectPanel | před 1 rokem | |
| CtDialog | před 1 rokem | |
| CtForm | před 1 rokem | |
| CtPagination | před 1 rokem | |
| CtSearch | před 1 rokem | |
| CtTable | před 1 rokem | |
| CtVuetify | před 1 rokem | |
| DatePicker | před 1 rokem | |
| Echarts | před 1 rokem | |
| Empty | před 1 rokem | |
| Enterprise | před 1 rokem | |
| FormUI | před 1 rokem | |
| ImgCropper | před 1 rokem | |
| Loading | před 1 rokem | |
| Position | před 1 rokem | |
| PositionLongStrip | před 11 měsíci | |
| PreviewImg | před 1 rokem | |
| ProgressBar | před 1 rokem | |
| QrCode | před 1 rokem | |
| Recharge | před 1 rokem | |
| SvgIcon | před 1 rokem | |
| Upload | před 1 rokem | |
| VerificationCode | před 1 rokem | |
| Verifition | před 1 rokem | |
| headSearch | před 1 rokem | |
| industryTypeCard | před 1 rokem | |
| jobTypeCard | před 1 rokem | |
| pay | před 1 rokem | |
| personalRecharge | před 1 rokem | |
| README.md | před 1 rokem | |
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>