lifanagju_citu 78e29d4c3c 报错信息不在msg中 3 недель назад
..
AreaSelect 229e02b8b2 地区字典数据处理 7 месяцев назад
AreaSelectPanel 51946f7b70 职位列表 7 месяцев назад
BackTop 9e44f02349 box-shadow 1 месяц назад
CtDialog 6846e01c5c 解析简历 5 месяцев назад
CtFilter a2fd8ac7e4 老师-院系:参数缺少学校id 2 месяцев назад
CtForm ee255207b9 表单添加tips 1 месяц назад
CtPagination df76f61db8 import 10 месяцев назад
CtSearch 2c013f801b 颜色 11 месяцев назад
CtTable 504ef8ebf3 表格调整 4 месяцев назад
CtVuetify 533475bb8e 在招岗位接口 1 год назад
DatePicker 33e95ae084 在线简历 7 месяцев назад
Echarts a97923963d 应聘简历分析 10 месяцев назад
Empty c3ec0c0bf6 样式 11 месяцев назад
Enterprise 2a7b75b87d ui调整 1 месяц назад
FormUI d16b67d34e 控制台警告调整 1 месяц назад
IFrame 6846e01c5c 解析简历 5 месяцев назад
ImgCropper a3ebfe606a 文件位置移动 9 месяцев назад
Knowledge b9ab112bc1 部分vuetify2改为3写法 4 недель назад
Loading 28eca0c310 字体全局替换,加粗替换 1 месяц назад
Position 8bea427eef 文本超出处理 1 месяц назад
PositionLongStrip 124326e1ab ui修改 1 месяц назад
PreviewImg 56aa056b31 首页职位卡片 3 месяцев назад
ProgressBar 9e0bd4b62a 信息填写完成度 8 месяцев назад
QrCode b07617fc5e 企业-余额充值 6 месяцев назад
Recharge 32ca4f67d2 发布众聘支付 9 месяцев назад
SvgIcon 8a51852ccb svg展示 9 месяцев назад
Upload 1422fffe88 将groupJobFair分支的老师学生内容合并到jobFair分支. 2 месяцев назад
VerificationCode 78e29d4c3c 报错信息不在msg中 3 недель назад
Verifition 91dd498dcc 删除测试代码 6 месяцев назад
headSearch ac0d1c46f9 文字垂直对齐 4 недель назад
industryTypeCard f7ed0cb37b 职位搜索优化 8 месяцев назад
jobTypeCard 374bc91d65 整型改为字符串对比导致无法回显,加上?.toString() 7 месяцев назад
pay 28eca0c310 字体全局替换,加粗替换 1 месяц назад
personalRecharge fa368c55c4 主色更换 3 месяцев назад
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>