是的,你可以在没有Bootstrap-Vue的情况下使用Bootstrap。 用npm来安装这两个包。
2.3 自定义模态框(Modal) 没有全局注册,所以作为局部组件使用 importModalfrom'./components/Modal.vue';constmodalTitle = ref('你好,世界');constmodalIsOpen = ref(false);constopenModal =()=>{ modalIsOpen.value =true; }constonModalClose =()=>{ modalIsOpen.value =false; } watch(result, () =...