nuxt
文章平均质量分 53
金刚腿
这个作者很懒,什么都没留下…
展开
-
nuxt中,bootstrapVue自定义样式使用
安装: npm i -S bootstrap-vue/nuxt配置nuxt.config modules: ["bootstrap-vue/nuxt"], css: ["@/assets/style/customBootStrap.scss"], //全局bootstrap样式 bootstrapVue: { //引入icon icons: true, // 自定义样式,以下两属性设置false bootstrapCSS: false, b..原创 2020-12-15 09:49:54 · 2117 阅读 · 0 评论 -
nuxt统一管理api模块
思路创建一个用于暴露api的plugin, 并将axios传参入api模块中调用步骤创建axios拦截器,统一管理请求(这步可有可无)export default function({ store, redirect, req, router, $axios }) { $axios.interceptors.request.use(config => { return config; }); $axios.interceptors.response.use(原创 2020-12-09 17:52:53 · 2318 阅读 · 3 评论 -
nuxt修改ico和pwa的配置使用
修改ico在static中添加自己需要的图标,如favicon2.iconuxt.config.js中修改head:{ link: [ { rel: "icon", type: "image/x-icon", href: "/favicon2.ico" }, { rel: "shortcut icon", href: "/favicon2.ico" }, { rel: "apple-touch-icon", href: "/favicon2.ico" } ]}原创 2020-12-15 09:28:16 · 2554 阅读 · 1 评论