Xiao_123 6b4b63cf2d 颜色 vor 1 Jahr
..
CtDialog b3d817eee9 个人表头 vor 1 Jahr
CtForm 91c71bd4b5 旧的表单封装 vor 1 Jahr
CtPagination 79de0e4759 公共组件重命名 vor 1 Jahr
Enterprise b5537a4dc9 热门企业 vor 1 Jahr
FormUI 6ed24264ad 表单组件封装 vor 1 Jahr
Position b5537a4dc9 热门企业 vor 1 Jahr
VerificationCode 6b4b63cf2d 颜色 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>