300===Dev Framework/VueJS 6

Vue2 기초 개념 완벽 가이드 😎

안녕하세요! 오늘은 Vue2의 핵심 기초 개념들을 쉽고 재미있게 설명해드리려고 해요. Vue2를 한마디로 정의하자면, 사용자 인터페이스(UI)를 만들기 위한 JavaScript 프레임워크입니다.만약 여러분이 레고 블록을 맞추듯이 원하는 웹 애플리케이션을 조립해나갈 수 있다면 얼마나 편리할까요? Vue2는 그런 꿈을 실현해주는 강력하고 직관적인 도구랍니다.1. Vue2란? 🤔Vue2는 "점진적 프레임워크(Progressive Framework)"라는 별칭을 가지고 있어요. 이는 기존 프로젝트에 조금씩 도입할 수 있다는 뜻입니다.예를 들어, 완전히 새로운 프로젝트를 시작하지 않아도, 현재의 웹 페이지나 앱의 특정 영역을 Vue로 먼저 구축해볼 수 있죠.🔹 Vue2의 주요 특징점진적 도입 가능: 처음엔 ..

Vue Beginner Tutorial Part (lifecycle, watchers, components)

Lifecycle Hooks and Template RefsLifecycle Hooks are used to manually and timely manipulate the DOM.Vue has been handling all the DOM updates for us, due to reactivity and declarative rendering.However, inevitably there will be cases where we need to manually work with the DOM.We can request a template ref - i.e. a reference to an element in the template - using the special ref attribute:A lifec..

Vue Beginner Tutorial (attribute, form binding, event, condition, list rendering)

Declarative renderingThe core feature of Vue is declarative rendering:1 Using a template syntax that extends HTML we can describe how the HTML should look like based on JavaScript state.2 When the state changes, the HTML updates automatically.Reactive StateState that can trigger updates when changed are considered reactive.In Vue, reactive state is held in components.We declare reactive state us..

728x90
반응형