当前位置: 首页 > 知识库问答 >
问题:

前端 - 这vue劝退啊?

樊熠彤
2024-03-31

问题出在哪?
image.png

image.png

components/index.ts

export { default as Button } from "./button"export { default as Card } from "./card"export { default as Icon } from "./icon"

button/index.ts

import Button from "./Button.vue"export default Button

button/Button.vue

<script setup lang="ts"></script><template>  <button type="button">    <slot></slot>  </button></template>

共有1个答案

艾焕
2024-03-31

不知道问题在哪儿。

不过不要这样做,会影响打包时候分包,导致 js 文件很大,无法 lazy-loading 。

 类似资料: