How do I only import Navbar, Dropdown and Modal from buefy in Nuxt? How do I only import Navbar, Dropdown and Modal from buefy in Nuxt? vue.js vue.js

How do I only import Navbar, Dropdown and Modal from buefy in Nuxt?


import Vue from 'vue'import { Dropdown, Icon } from 'buefy'Vue.use(Dropdown)Vue.use(Icon)

Fixed the issue but component wise scss is still not working

With app.scss as

@import "~bulma";@import "~buefy/src/scss/buefy";

Buefy styles are not getting applied to the dropdown

UPDATEEven SCSS can be imported partially

@import "~buefy/src/scss/utils/_all";@import "~buefy/src/scss/components/_autocomplete";@import "~buefy/src/scss/components/_dropdown";@import "~buefy/src/scss/components/_notices";