본문 바로가기

Vue

(3)
[#. Vue] Vue Draggable을 이용해서 리스트 드래그로 순서 바꾸기 list drag and sort Vue로 이렇게 Todo 웹 어플리케이션을 만들었는데 할 일 목록 순서를 자유자재로 바꾸고 싶다 Vue.Draggable을 이용해서 list를 drag and drop 해서 순서를 바꿔보자 github.com/SortableJS/Vue.Draggable SortableJS/Vue.Draggable Vue drag-and-drop component based on Sortable.js. Contribute to SortableJS/Vue.Draggable development by creating an account on GitHub. github.com ① vuedraggable 설치 npm install --save vuedraggable ② vue 파일 script에 vuedraggable impor..
[#. Vue] [Vue warn]: Unknown custom element: <b-list-group-item> - did you register the component correctly? For recursive components, make sure to provide the "name" option. vue bootstrap 에러 해결하기 Vue에서 UI 프레임워크로 bootstrap를 사용하려고 하는데 에러가 발생했다 버전은 아래와 같고, 버전 문제는 분명 아니다 Vue 2.6.12 bootstrap 4.5.3 bootstrap-vue 2.21.2 처음부터 살펴보자 ① bootstrap, bootstrap-vue 설치 npm install vue bootstrap-vue bootstrap --save ② main.js에 세팅 import Vue from 'vue' import App from './App.vue' import BootstrapVue from 'bootstrap-vue' import 'bootstrap/dist/css/bootstrap.min.css' import 'bootstrap-vue/dist/bootstrap-vue..
[#. Vue] Chrome Vue devtools 크롬 Vue(Vue2, Vue3) 확장 프로그램 추가하기 Vue devtools 확장 프로그램을 추가해 보자 Vue2, Vue3은 확장 프로그램이 다르다! 주의해서 추가하도록 하자 Vue 2 chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd Vue.js devtools Chrome and Firefox DevTools extension for debugging Vue.js applications. chrome.google.com Vue 3 chrome.google.com/webstore/detail/vuejs-devtools/ljjemllljcmogpfapbkkighbhhppjdbg Vue.js devtools Chrome and Firefox DevTools ex..