vue 引用全局js or css

1.新建一个js or scss 文件
2.去main.js文件

import "./styles/whole.scss"; // 引用css
import formatUtil from "./fix.js";   //js文件
Vue.use(formatUtil); //自定义js

你可能感兴趣的:(javascript,vue.js,css)