Vue.js Components 작성규칙

강참치·2022년 5월 31일
0

Vue.js

목록 보기
2/2
post-thumbnail
  • 이름은 합성어 (html tag와 충돌 방지) ex. CommonPayment

이름은 dash-case 도 가능
ex. common-payment

코드를 입// example
<template>
	<!--컴퍼넌트 태그는 닫히는 태그 생략-->
	<CommonPayment />
</template>

<script>
import CommonPayment from '~/components/CommonPayment'
components: {CommonPayment}
</script>력하세요
profile
참치입니다

0개의 댓글