3-add-component
<template>
<div class="text">
Good Bye World!
</div>
</template><script>
<!--여기에 스크립트 작성-->
</script>

Last updated
<template>
<div class="text">
Good Bye World!
</div>
</template><script>
<!--여기에 스크립트 작성-->
</script>

Last updated
export default {
name: 'ByeWorld', //이름은 컴포넌트파일의 이름과 같게해주세요
};<style>
<!--여기에 스타일 작성-->
</style>.text {
font-size: 15px;
}import ByeWorld from './components/ByeWorld.vue'