vue3导入导出
在Vue 3中,你可以使用ES6的模块导入导出特性来组织你的代码。
导出(在一个文件中):
// MyComponent.vue
<template>
<!-- 组件模板 -->
</template>
<script>
export default {
// 组件选项
};
</script>
<style>
/* 组件样式 */
</style>
导入(在另一个文件中):
// 另一个文件,比如 main.js
import MyComponent from './MyComponent.vue';
// 使用 MyComponent
const app = Vue.createApp({
components: {
MyComponent
}
});
app.mount('#app');
如果你需要导出和导入某个特定的功能或变量,可以这样做:
导出(在一个文件中):
// utils.js
export function sum(a, b) {
return a + b;
}
export const multiply = (a, b) => a * b;
导入(在另一个文件中):
// 另一个文件,比如 main.js
import { sum, multiply } from './utils';
console.log(sum(5, 3)); // 输出 8
console.log(multiply(5, 3)); // 输出 15
请注意,Vue 3依赖于ES6模块的默认导出和命名导出。确保你的构建系统或打包工具支持这些特性,例如使用Babel或不带任何特殊配置的现代JavaScript模块导入导出。
评论已关闭