module.exports在vue3使用
时间: 2024-05-18 13:11:08 浏览: 238
详解Sea.js中Module.exports和exports的区别
在Vue 3中,你可以使用`export`关键字来导出模块。`module.exports`是Node.js中用于导出模块的语法,但在Vue 3中,我们通常使用ES模块的语法。
假设你有一个名为`example.js`的模块,你可以这样导出它:
```javascript
export const example1 = 'This is example 1';
export const example2 = 'This is example 2';
```
然后,你可以在另一个文件中使用import语句来导入这些导出的变量:
```javascript
import { example1, example2 } from './example.js';
console.log(example1); // 输出:This is example 1
console.log(example2); // 输出:This is example 2
```
请注意,Vue 3默认支持使用ES模块进行开发,所以你不需要使用`module.exports`来导出模块。
阅读全文