1. 程式人生 > >前端模組化開發規範之ES6

前端模組化開發規範之ES6

直接上程式碼啦!

匯入

import { getList } from './userService'

或者

import userService from './userService'

匯出

export default {
    userService
}

或者

export function getList() {
}