Xiao_123 e749732451 职位基本信息表单 il y a 1 an
..
AreaSelect cb3c578db7 id为字符串 il y a 1 an
CtDialog b3d817eee9 个人表头 il y a 1 an
CtForm c56ae1c5f9 在封装的组件中update:search使用防抖触发输入,不需要防抖searchDebouncedTime传入0即可 il y a 1 an
CtPagination 7ba1acf2e4 职位搜索标题 il y a 1 an
CtSearch 84635c1e7f feat: 自定义组件 il y a 1 an
CtVuetify 533475bb8e 在招岗位接口 il y a 1 an
DatePicker 6320235c95 更换日期组件 il y a 1 an
Empty bc38880f67 个人中心 il y a 1 an
Enterprise 0cd4fa3660 跳转 il y a 1 an
FormUI e749732451 职位基本信息表单 il y a 1 an
Position 0cd4fa3660 跳转 il y a 1 an
PositionLongStrip 7ba1acf2e4 职位搜索标题 il y a 1 an
VerificationCode 6b4b63cf2d 颜色 il y a 1 an
headSearch 0aa5bc54a4 职位检索 il y a 1 an
industryTypeCard 7015c1c2f0 求职意向 il y a 1 an
jobTypeCard 7015c1c2f0 求职意向 il y a 1 an
README.md 5b82422e83 init il y a 1 an

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>