Xiao_123 0125d849a7 Table 10 月之前
..
AreaSelect df76f61db8 import 10 月之前
CtDialog b601779584 补充基本信息取消按钮改为跳过 10 月之前
CtForm dac5acdf81 时间选择器组件封装 10 月之前
CtPagination df76f61db8 import 10 月之前
CtSearch 2c013f801b 颜色 11 月之前
CtTable 0125d849a7 Table 10 月之前
CtVuetify 533475bb8e 在招岗位接口 1 年之前
DatePicker f8048098a6 .dp__input 10 月之前
Echarts a97923963d 应聘简历分析 10 月之前
Empty c3ec0c0bf6 样式 11 月之前
Enterprise ce3acccd6b 面试管理 10 月之前
FormUI 0c0c6f34cb 级联优化 10 月之前
Position 8f3f963f64 职位详情 10 月之前
PositionLongStrip 66e9ec8a43 根据性别展示头像 10 月之前
PreviewImg d1b17668fb 图片&视频预览 1 年之前
Recharge 5c7c48fdee 职位发布余额不足时弹窗提示充值 10 月之前
Upload ec9b4866b0 简历上传 10 月之前
VerificationCode 88e3f8eadc 提示输入个数 10 月之前
headSearch abb0c4f6e2 求职端-职位文件移动 11 月之前
industryTypeCard 2c013f801b 颜色 11 月之前
jobTypeCard b6ebc3338d 职位类型超出隐藏 10 月之前
publicRecruitment f8d41b6af9 推荐职位 11 月之前
svg 8722dd5f22 提示 10 月之前
README.md 5b82422e83 init 1 年之前

README.md

Components

Vue template files in this folder are automatically imported.

🚀 Usage

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>