Vue两种暴露方法 用export default{} export default{ name:'student', data(){ } } import student from '上面代码所处文件路径' 一般用于在js中使用function 动态资源 只用export,也叫分别暴露 export const a={ } export const b={ } import {a,b} from '上面代码所处文件路径' 一般用于在js中暴露一些静态的资源