vue 學習小結

export 和 export default

  • export 能夠引入多個模塊
  • export default 只能引入一個模塊,能夠匿名
//
export const str = 'hello world'
export function f(a){
    return a+1
}
//
import { str, f } from 'demo1'
//
export default {
//export default obj = {
    a: 'hello',
    b: 'world'      
}
//
import obj from 'demo1'
複製代碼
相關文章
相關標籤/搜索