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>