在Vue中的三种不同的模块导出方式:分别暴露、统一暴露和默认暴露。
摘要:
一,分别暴露: 通过在模块中使用export关键字来分别导出多个变量、函数或组件。例如: test.js export const person = {name:"bruce",age:33} export function getPerson(){ console.log(11) } 在另一个模块 阅读全文
posted @ 2024-08-21 13:26 一先生94 阅读(415) 评论(0) 推荐(0) 编辑