gpt4 book ai didi

javascript - 在 Nuxt.js 中导入单个 Vuetify 组件?

转载 作者:行者123 更新时间:2023-12-05 06:56:24 25 4
gpt4 key购买 nike

我在 nuxt.js 中使用 Vuetify。如何仅在仪表板布局中使用它?在 nuxt.config.js 中

 modules: [
//['nuxt-leaflet', { /* module options */}],
'bootstrap-vue/nuxt',
'@nuxtjs/axios',
'@nuxtjs/pwa',
'@nuxtjs/auth',
'@nuxtjs/toast',
['@nuxtjs/vuetify', {rtl: true}],
// 'nuxt-i18n',
],

最佳答案

你在使用 vuetify-loadertree-shaking ?如果是这样,您可以将特定的 vuetify 组件导入特定的 .vue 组件:

import { VTextField } from 'vuetify/lib';

并添加:

components: { VTextField }

根据@nuxtjs/vuetify模块文档,如果您使用 treeShake option ,默认情况下,您的 Nuxt.js 应用程序将仅使用所需的 vuetify 组件,并且包大小不会增加。

Uses vuetify-loader to enable automatic tree-shaking. Enabled only for production by default.

另一件事,如果您使用的是 Nuxt >= 2.9.0,请改用 buildModules 部分:

{
buildModules: [
// Simple usage
'@nuxtjs/vuetify',

// With options
['@nuxtjs/vuetify', { /* module options */ }]
]
}

关于javascript - 在 Nuxt.js 中导入单个 Vuetify 组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65154418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com