250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JDBC
- 문서
- STS
- Tomcat
- JavaScript
- Python
- MySQL
- git
- Eclipse
- Open Source
- error
- MSSQL
- ubuntu
- Exception
- SpringBoot
- Docker
- Source
- jpa
- PostgreSQL
- 오픈소스
- Thymeleaf
- IntelliJ
- myBatis
- 설정
- Core Java
- spring
- AJAX
- maven
- Spring Boot
- oracle
Archives
- Today
- Total
헤르메스 LIFE
[Vue.js] 기초 #1 컴포넌트 생성 및 등록하기 + index.html(favicon.ico + font awesome) 본문
CSR(Client Side Rendering)
[Vue.js] 기초 #1 컴포넌트 생성 및 등록하기 + index.html(favicon.ico + font awesome)
헤르메스의날개 2022. 7. 22. 00:52728x90
TodoHeader.vue Sample
<template>
<div>
header
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
실행
npm run dev
결과
파비콘 생성 사이트
https://www.favicon-generator.org/
https://www.favicon-generator.org/
<!-- 반응형 웹 디자인을 위한 Meta Tag (일반적인 모바일 최적화 코드) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
font awesome 6.1.1
<script defer src="https://use.fontawesome.com/releases/v6.1.1/js/all.js" integrity="sha384-xBXmu0dk1bEoiwd71wOonQLyH+VpgR1XcDH3rtxrLww5ajNTuMvBdL5SOiFZnNdp" crossorigin="anonymous"></script>
font awesome 6.0.0
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
font awesome 5.14.4
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" crossorigin="anonymous">
font awesome 5.0.9
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" crossorigin="anonymous">
Google Ubuntu Font
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vue-todo</title>
<!-- 반응형 웹 디자인을 위한 Meta Tag (일반적인 모바일 최적화 코드) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="src/assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="src/assets/favicon.ico" type="image/x-icon">
<script defer src="https://use.fontawesome.com/releases/v6.1.1/js/all.js"
integrity="sha384-xBXmu0dk1bEoiwd71wOonQLyH+VpgR1XcDH3rtxrLww5ajNTuMvBdL5SOiFZnNdp" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
</body>
</html>
https://fontawesome.com/v6/icons?m=free
728x90
'CSR(Client Side Rendering)' 카테고리의 다른 글
[Vue.js] 인프런의 캡틴판교님의 Todo 샘플 리팩토링 정리입니다. (0) | 2022.08.02 |
---|---|
[Vue.js] 인프런 캡틴 판교님의 Todo 샘플 정리 (0) | 2022.08.01 |
[Vue.js] DevTools 설치 - Chrome plugin 설치 (0) | 2022.04.06 |
[Vue.js] npm ERR! The operation was rejected by your operating system. (0) | 2022.04.05 |
[Vue.js] Spring Boot + Vue.js 개발환경 셋팅 (0) | 2022.03.04 |