We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone, I am trying to install this package in nuxtjs but it seems to no be working My vue-xlsx.js plugin
import Vue from 'vue' import { XlsxWorkbook, XlsxSheet, XlsxDownload } from 'vue-xlsx' Vue.use(XlsxWorkbook) Vue.use(XlsxSheet) Vue.use(XlsxDownload)
nuxt.config
plugins: [ '@/plugins/element-ui', '@/plugins/axios', '@/plugins/bus', '@/plugins/reactive-search', '@/plugins/buefy', '@/plugins/vue-xlsx', ],
The text was updated successfully, but these errors were encountered:
Hello @dker92, Replace
Vue.use(XlsxWorkbook) Vue.use(XlsxSheet) Vue.use(XlsxDownload)
Vue.use(XlsxWorkbook)
Vue.use(XlsxSheet)
Vue.use(XlsxDownload)
with
Vue.component('XlsxWorkbook', XlsxWorkbook) Vue.component('XlsxSheet', XlsxSheet) Vue.component('XlsxDownload', XlsxDownload)
Vue.component('XlsxWorkbook', XlsxWorkbook)
Vue.component('XlsxSheet', XlsxSheet)
Vue.component('XlsxDownload', XlsxDownload)
Sorry, something went wrong.
No branches or pull requests
Hi everyone,
I am trying to install this package in nuxtjs but it seems to no be working
My vue-xlsx.js plugin
nuxt.config
The text was updated successfully, but these errors were encountered: