Light
Dark
3. Vue Router 👩💻 1. Installation vue create를 통해 프로젝트 생성할 때 Router를 프로젝트에 설정하지 않았다면 다음 명령어를 통해 설치한다. vue add router @vue/cli-plugin-router가 설치되며, src 아래 router, view 디렉토리 및 파일이 생... Read More
1. Vue.js Characteristics 👩💻 1. MVVM Pattern Model-View-ViewModel을 사용한다. 2. Component View를 여러 개로 쪼개 재사용 할 수 있는 구조로 개발한다. Vue에서 하나의 컴포넌트는 HTML + CSS + JavaScript로 이루어져있다. 2. V... Read More
6. HTML Styles 👩💻 1. HTML Style Attribute style attribute 는 HTML 태그의 elements 에 색, 크기, 위치 등의 정보를 제공한다. Syntax <tagname style="property:value;"> Attributes는 항상 Name-Value 쌍으로 작성했던 것 처럼(i.e.... Read More
1. HTML Basic 👩💻 1. HTML Documents <!DOCTYPE html> <html lang="en"> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body&g... Read More
What is Initialization? Initialization은 Classes, Structures, Enumerations 를 사용하기 위해 Instance 를 준비하는 과정을 말한다. 이것은 Stored Properties 를 위한 초기값을 설정하거나 new Instance 가 생성되기 전에 수행해야 하는 것들을 ... Read More