Nuxt3官网:https://nuxt.com/docs
Nuxt3的官方库:https://nuxt.com/modules
常用的库有:Element Plus、Vant、color-mode、axios,其他库可以根据需求查找使用。(注意安装时候要按照nuxt3方式安装和引用)
Nuxt3官方提供的案例:https://nuxt.com/showcase
一、先看一下第三方库的安装方法
1、Nuxt3安装Element Plus nuxt3版本:
npm install -D @element-plus/nuxt
配置:
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@element-plus/nuxt'],
})
库的组件使用时候直接在页面写即可,无需导入,会自动导入。
2、color-mode安装 (https://nuxt.com/modules/color-mode):
color-mode用于实现网页的浅色模式和暗黑模式,支持自定义颜色模式和跟随系统模式。
npm install --save-dev @nuxtjs/color-mode
配置:
export default defineNuxtConfig({
modules: ['@nuxtjs/color-mode'],
colorMode: {
preference: 'system', // 默认模式(system/light/dark/sepia)
fallback: 'light', // 失败后使用的颜色模式
hid: 'nuxt-color-mode-script',
globalName: '__NUXT_COLOR_MODE__',
componentName: 'ColorScheme',
classPrefix: '',//类名前缀
classSuffix: '-mode',//类名后缀
storageKey: 'nuxt-color-mode'//localStorage存储的key
}
})
官方示例:
Color mode: {{ $colorMode.value }}
这里推荐color-mode结合Element Plus来实现浅色和暗黑模式切换,这样就不用自己写浅色和暗黑模式的css样式了(暗黑模式 | Element Plus)。
引入配置Element Plus暗黑模式样式类:
//只需要如下在项目入口文件修改一行代码:
import 'element-plus/theme-chalk/dark/css-vars.css'
实际上实现的是可以创建一个开关来控制暗黑模式的class 类名。
项目里,创建colorMode变量:
由于是SSR模式,所以当我们调试或者部署时候,会出现获取到的colorMode.preference 不准确问题,所以我这里又单独弄了个localStorage来时时存储哪种主题颜色模式。
3、axios安装:
npm install axios
axios在Nuxt3中安装方法和使用方法和在Vue3项目中是一样的。
function getData(url: string) {
const api = axios.create({
baseURL: "https://api.github.com/search/repositories?q=v&sort=stars",
timeout: 60000,
withCredentials: false,
method: "get",
headers: {
"Content-Type": "application/json",
},
});
api.get(url).then((res) => {
console.log(res);
});
}
安装:
npm i -D @vueuse/nuxt @vueuse/core
配置:
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
'@vueuse/nuxt',
],
})
在nuxt.config.ts中提供app.head属性。允许你为整个应用程序定制head。示例如下:
export default defineNuxtConfig({
app: {
head: {
charset: 'utf-16',
viewport: 'width=500, initial-scale=1',
title: 'My App',
meta: [
//
{ name: 'description', content: 'My amazing site.' }
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
}
}
})
如果你想单独在某个页面设置title,可以使用useHead。示例代码:
可配置属性如下:
interface MetaObject {
title?: string
titleTemplate?: string | ((title?: string) => string)
base?: Base
link?: Link[]
meta?: Meta[]
style?: Style[]
script?: Script[]
noscript?: Noscript[];
htmlAttrs?: HtmlAttributes;
bodyAttrs?: BodyAttributes;
}
你可以在link和 script元标签上使用body: true 选项将它们附加到
标签的末尾。
添加动态标题。titleTemplate被设置为一个带有 %s占位符的字符串或function,这允许更大的灵活性来动态设置 Nuxt app的每个路由的页面标题:
添加外部CSS:
Nuxt提供了useFetch, useLazyFetch, useAsyncData和useLazyAsyncData来处理应用程序中的数据获取,这里我们只介绍useFetch用法。(注意useFetch请求只能放在script根目录或者生命周期回调里或者自己自定义个async异步方法)
基本示例:
async function getFetchListData() {
const { data, pending, error, refresh } = await useFetch("https://api.nuxtjs.dev/mountains", { method: 'get' })
console.log(data.value[0].title);
}
//如果提示data这里有错误,可以按照如下的改写
async function getFetchListData() {
const { data, pending, error, refresh }:any = await useFetch("https://api.nuxtjs.dev/mountains", { method: 'get' })
console.log(data.value[0].title);
}
useFetch类型:
function useFetch(
url: string | Request | Ref | () => string | Request,
options?: UseFetchOptions
): Promise>
type UseFetchOptions = {
key?: string
method?: string
query?: SearchParams
params?: SearchParams
body?: RequestInit['body'] | Record
headers?: Record | [key: string, value: string][] | Headers
baseURL?: string
server?: boolean
lazy?: boolean
immediate?: boolean
default?: () => DataT
transform?: (input: DataT) => DataT
pick?: string[]
watch?: WatchSource[]
}
type AsyncData = {
data: Ref
pending: Ref
refresh: (opts?: { dedupe?: boolean }) => Promise
execute: () => Promise
error: Ref
}
useFetch参数:
method
: 请求方法。query
: 使用 ufo 添加查询搜索参数到URL。params
:query
的别名。body
: 请求体-自动字符串化(如果传递了一个对象)。headers
: 请求头。baseURL
: 请求的基本URL。useAsyncData
):
key
: 一个唯一的键,以确保数据获取可以正确地跨请求去重复数据,如果没有提供,它将基于使用useAsyncData
的静态代码位置生成。server
: 是否从服务器上获取数据(默认为true
)。default
: 一个工厂函数,在async函数解析之前设置数据的默认值——lazy: true
选项尤其有用。pick
: 只从handler
函数结果中选择该数组中的指定键。watch
: 监视响应源以自动刷新。transform
: 解析后可用于改变handler
函数结果的函数。immediate
: 当设置为false
时,将阻止请求立即触发。(默认为true
)useFetch返回值:
handler
函数返回的数据的函数。默认情况下,Nuxt要等到refresh
完成后才能再次执行。
使用拦截器:
const { data, pending, error, refresh } = await useFetch('/api/auth/login', {
onRequest({ request, options }) {
// Set the request headers
options.headers = options.headers || {}
options.headers.authorization = '...'
},
onRequestError({ request, options, error }) {
// Handle the request errors
},
onResponse({ request, response, options }) {
// Process the response data
return response._data
},
onResponseError({ request, response, options }) {
// Handle the response errors
}
})
Nuxt3自带router和route,直接定义使用即可。
const router = useRouter();
示例如下:
五、Nuxt3自定义错误页面
Nuxt3自定义错误页面,只需要在项目根目录新建一个error.vue页面即可。
页面里通过定义useError来获取返回的错误信息,展示到页面上。
const error = useError()
示例代码:
{{error.statusCode}}-自定义错误页面
六、打包部署,并自定义运行的端口号
推荐使用pm2进行运行,并自定义端口号。
pm2常用命令:
pm2 start app.js # 启动app.js应用程序
pm2 start app.js -i 4 # cluster mode 模式启动4个app.js的应用实例
# 4个应用程序会自动进行负载均衡
pm2 start app.js --name="api" # 启动应用程序并命名为 "api"
pm2 start app.js --watch # 当文件变化时自动重启应用
pm2 start script.sh # 启动 bash 脚本
pm2 list # 列表 PM2 启动的所有的应用程序
pm2 monit # 显示每个应用程序的CPU和内存占用情况
pm2 show [app-name] # 显示应用程序的所有信息
pm2 logs # 显示所有应用程序的日志
pm2 logs [app-name] # 显示指定应用程序的日志
pm2 flush # 清空所有日志文件
pm2 stop all # 停止所有的应用程序
pm2 stop 0 # 停止 id为 0的指定应用程序
pm2 restart all # 重启所有应用
pm2 reload all # 重启 cluster mode下的所有应用
pm2 gracefulReload all # Graceful reload all apps in cluster mode
pm2 delete all # 关闭并删除所有应用
pm2 delete 0 # 删除指定应用 id 0
pm2 scale api 10 # 把名字叫api的应用扩展到10个实例
pm2 reset [app-name] # 重置重启数量
pm2 startup # 创建开机自启动命令
pm2 save # 保存当前应用列表
pm2 resurrect # 重新加载保存的应用列表
pm2 update # Save processes, kill PM2 and restore processes
pm2 generate # Generate a sample json configuration file