博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Nuxt] Add CSS Libraries to Nuxt
阅读量:5094 次
发布时间:2019-06-13

本文共 1235 字,大约阅读时间需要 4 分钟。

You can easily add CSS libraries to Nuxt using yarn or npm to install them, then simply adding them to the nuxt.config.js so they're included in each page. Then all the classes will be available for use in all of your templates. This lesson walks your through installing a library then adding it to your nuxt.config.js.

 

Install:

npm i --save tachyons

 

nuxt.config.js:

module.exports = {  /*  ** Headers of the page  */  head: {    title: 'starter',    meta: [      { charset: 'utf-8' },      { name: 'viewport', content: 'width=device-width, initial-scale=1' },      { hid: 'description', name: 'description', content: 'Nuxt.js project' }    ],    link: [      { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }    ]  },  /**   * Global CSS   */  css: ['tachyons/css/tachyons.css'],  /*  ** Customize the progress-bar color  */  loading: { color: '#3B8070' },  /*  ** Build configuration  */  build: {    /*    ** Run ESLINT on save    */    extend (config, ctx) {      if (ctx.isClient) {        config.module.rules.push({          enforce: 'pre',          test: /\.(js|vue)$/,          loader: 'eslint-loader',          exclude: /(node_modules)/        })      }    }  }}

 

转载于:https://www.cnblogs.com/Answer1215/p/7230257.html

你可能感兴趣的文章
合并排序:归并排序
查看>>
简便算法
查看>>
爬取校园新闻
查看>>
Struts2默认Action
查看>>
API详解
查看>>
Django--ORM--模型增删改查--备忘
查看>>
转: 关于CAS cpu锁的技术说明。
查看>>
java中转义字符和路径符
查看>>
redux,react-redux、redux-thunk、redux-logger、redux-promise实例
查看>>
android开发的一点小总结,小杂言,小记录
查看>>
洛谷P3688/uoj#291. [ZJOI2017]树状数组
查看>>
Visio2013 64安装和激活
查看>>
python+webdriver 模拟用户交互工具
查看>>
linuxlinux0.11源码学习——bootsect.s学习
查看>>
获取没有key值的数据,用循环器
查看>>
转发:招聘一个靠谱的 iOS
查看>>
20165339 预备作业3 Linux安装及学习
查看>>
Mysql 根据时间戳按年月日分组统计
查看>>
Activity传递参数——传递简单数据
查看>>
Top Android App使用的组件
查看>>