路由之间不显示 Nuxt 加载栏

Nuxt loading bar not showing between routes

加载栏在 nuxt.config.js 中启用,如下所示,但它不会在路线之间显示。我正在使用 Vuetify。

/*
** Customize the progress-bar color
*/
loading: {
  color: '#333333'
},

我正在使用以下方式切换路由:

<nuxt-link to="/auth/admin">Admin</nuxt-link>

我遇到了同样的问题

这对我有用

loading: { color: '#333333', throttle: 0 },

了解更多信息Customize progress bar

试试这个:

loading: {
 color: 'blue',
 height: '5px',
 throttle: 0
}

但是如果你使用

Npx nuxt-create {app name}

然后在第 20 行的 nuxt.config 中,已经有一个加载对象将其删除。 祝你好运。