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

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>