lifanagju_citu 7b0f47b9c5 切换为招聘者 il y a 1 an
..
AreaSelect cb3c578db7 id为字符串 il y a 1 an
CtDialog 90ad8243b9 简历投递 il y a 1 an
CtForm a63823b20a defineExpose 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 54e03a1652 在招职位 il y a 1 an
Empty bc38880f67 个人中心 il y a 1 an
Enterprise 139daa9db1 字典 il y a 1 an
FormUI 909686a57f 添加文本组件内置图标事件 il y a 1 an
Position 32357079a1 个人中心-已投递、职位收藏、公司收藏列表展示 il y a 1 an
PositionLongStrip fa56591621 路由 il y a 1 an
PreviewImg d1b17668fb 图片&视频预览 il y a 1 an
VerificationCode 7b0f47b9c5 切换为招聘者 il y a 1 an
headSearch 69b85fd3cc 回车登录 il y a 1 an
industryTypeCard 36c0c7ba1f 职位 il y a 1 an
jobTypeCard 36c0c7ba1f 职位 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>