js 模块化

导出的时候有具体名字,引入的时候加上{}

buttercms.js

import Butter from 'buttercms';
export const butter = Butter('cc6f2557c1f62bb47a60e54613332d01d6ba7706');

// 引入的时候加上{}
import { butter } from "@/buttercms";

你可能感兴趣的:(js 模块化)