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
Я установил плагин BootstrapVue
npm install bootstrap-vue bootstrap.
npm install bootstrap-vue bootstrap
Следующий код не работает:
import {Vue} from 'ui.vue'; import BootstrapVue from 'bootstrap-vue';
Vue.use(BootstrapVue)
Vue.create({ ... });
И во Vue-компоненте (*.vue) выдает ошибку при размещении компонента
<b-button>Button</b-button>
Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Как правильно подключить плагин и разместить компоненты этого плагина в своих компонентах Vue (*.vue)?
The text was updated successfully, but these errors were encountered:
@astrahov, попробуйте в bundle.config.js указать
plugins: { resolve: true, },
Sorry, something went wrong.
@vovkabelov, сделал так и теперь после команды bitrix build зависает IDE и ничего не происходит.
bitrix build
const vuePlugin = require('rollup-plugin-vue'); const commonjs = require('rollup-plugin-commonjs'); module.exports = { ... plugins: { custom: [ commonjs(), vuePlugin(), ], resolve: true, }, };
No branches or pull requests
Я установил плагин BootstrapVue
npm install bootstrap-vue bootstrap
.Следующий код не работает:
import {Vue} from 'ui.vue';
import BootstrapVue from 'bootstrap-vue';
Vue.use(BootstrapVue)
Vue.create({
...
});
И во Vue-компоненте (*.vue) выдает ошибку при размещении компонента
<b-button>Button</b-button>
Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Как правильно подключить плагин и разместить компоненты этого плагина в своих компонентах Vue (*.vue)?
The text was updated successfully, but these errors were encountered: