Components of Vuestrap not working with Vue2
问题 In a single file component in the project created by vue-cli, i want to import some components of vuestrap: import Vue from 'vue' import alert from 'vue-strap/src/alert' import dropdown from 'vue-strap/src/Dropdown' export default { name: 'todo', components: { alert, dropdown }, data() { return { msg: '...' } } } If I only import alert, it is working without any problem. However, if I import Input , Dropdown , i get errors inside the vue files of the vuestrap files itself: ERROR in ./~/vue