lifanagju_citu 990108433b 埋点 пре 1 година
..
AreaSelect a140b7d388 企业-职位编辑 пре 1 година
CtDialog 90ad8243b9 简历投递 пре 1 година
CtForm a63823b20a defineExpose пре 1 година
CtPagination 7ba1acf2e4 职位搜索标题 пре 1 година
CtSearch 84635c1e7f feat: 自定义组件 пре 1 година
CtVuetify 533475bb8e 在招岗位接口 пре 1 година
DatePicker 54e03a1652 在招职位 пре 1 година
Empty a140b7d388 企业-职位编辑 пре 1 година
Enterprise e4ed0bffd9 暂无数据展示 пре 1 година
FormUI a140b7d388 企业-职位编辑 пре 1 година
Position 32357079a1 个人中心-已投递、职位收藏、公司收藏列表展示 пре 1 година
PositionLongStrip 42e2d84308 加? пре 1 година
PreviewImg d1b17668fb 图片&视频预览 пре 1 година
VerificationCode 7b0f47b9c5 切换为招聘者 пре 1 година
headSearch 990108433b 埋点 пре 1 година
industryTypeCard 1a867fe2dd 限制可选个数 пре 1 година
jobTypeCard 37cfd354ad 职位发布、职位列表 пре 1 година
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>