Xiao_123 6890f09db1 Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev 1 年間 前
..
CtDialog b3d817eee9 个人表头 1 年間 前
CtForm 56f49b8c9e 行业类型 1 年間 前
CtPagination 79de0e4759 公共组件重命名 1 年間 前
CtSearch 84635c1e7f feat: 自定义组件 1 年間 前
CtVuetify 84635c1e7f feat: 自定义组件 1 年間 前
Enterprise 7acf85fedd 企业详情 1 年間 前
FormUI c3fa72cf85 defineEmits 1 年間 前
Position 7acf85fedd 企业详情 1 年間 前
VerificationCode 6b4b63cf2d 颜色 1 年間 前
areaTree efa85a2d72 去掉打印 1 年間 前
headSearch df9a42f91a 搜索跳转 1 年間 前
industryTypeCard 56f49b8c9e 行业类型 1 年間 前
jobTypeCard 76f972c41a 跳转 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>