File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,8 @@ export default {
436436 externalJs: [
437437 ' //unpkg.com/babel-polyfill/dist/polyfill.min.js' ,
438438 ` //unpkg.com/vue@${ vueVersion} /dist/vue.min.js` ,
439- ` //unpkg.com/bootstrap-vue@${ bootstrapVueVersion} /dist/bootstrap-vue.js`
439+ ` //unpkg.com/bootstrap-vue@${ bootstrapVueVersion} /dist/bootstrap-vue.js` ,
440+ ` //unpkg.com/bootstrap-vue@${ bootstrapVueVersion} /dist/bootstrap-vue-icons.js`
440441 ]
441442 }
442443 },
@@ -479,13 +480,14 @@ export default {
479480 const htmlContent = ' <div id="app"></div>'
480481 const jsContent = [
481482 " import Vue from 'vue'" ,
482- " import BootstrapVue from 'bootstrap-vue'" ,
483+ " import { BootstrapVue, BootstrapVueIcons } from 'bootstrap-vue'" ,
483484 " import App from './App'" ,
484485 ' ' ,
485486 " import 'bootstrap/dist/css/bootstrap.css'" ,
486487 " import 'bootstrap-vue/dist/bootstrap-vue.css'" ,
487488 ' ' ,
488489 ' Vue.use(BootstrapVue)' ,
490+ ' Vue.use(BootstrapVueIcons)' ,
489491 ' ' ,
490492 " new Vue({ el: '#app', render: h => h(App) })"
491493 ].join (' \r\n ' )
You can’t perform that action at this time.
0 commit comments