# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generate
需要注意的是 Nuxt的nuxt.config.js
配置里面的 plugins 第三方库引入配置是全局引入,不是按页面按需引入。
包括nuxt.config.js
css也是一样全局引入。
为了按需引入样式和组件需要配置nuxt.config.js
的 [build]{https://zh.nuxtjs.org/api/configuration-build/}配置项
export default {
build: {
babel: {
plugins: [
[
'import',
{
libraryName: 'vant',
style: (name) => {
return `${name}/index.css`
},
},
],
]
}
}
}
For detailed explanation on how things work, check out Nuxt.js docs.