Xiao_123 911fc27a00 图片预览v-viewer há 1 ano atrás
..
CtDialog b3d817eee9 个人表头 há 1 ano atrás
CtForm 56f49b8c9e 行业类型 há 1 ano atrás
CtPagination 79de0e4759 公共组件重命名 há 1 ano atrás
CtSearch 84635c1e7f feat: 自定义组件 há 1 ano atrás
CtVuetify 84635c1e7f feat: 自定义组件 há 1 ano atrás
Enterprise 911fc27a00 图片预览v-viewer há 1 ano atrás
FormUI c3fa72cf85 defineEmits há 1 ano atrás
Position 7acf85fedd 企业详情 há 1 ano atrás
PositionLongStrip 9477d044ac 职位搜索页 há 1 ano atrás
VerificationCode 6b4b63cf2d 颜色 há 1 ano atrás
areaTree efa85a2d72 去掉打印 há 1 ano atrás
headSearch df9a42f91a 搜索跳转 há 1 ano atrás
industryTypeCard 56f49b8c9e 行业类型 há 1 ano atrás
jobTypeCard ecb61523b2 轮播图 há 1 ano atrás
README.md 5b82422e83 init há 1 ano atrás

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>