一,创建组件
html
<template>
<h3></h3>
</template>
<script>
</script>
<style>
h3{
border: 18px solid red;
}
</style>
二,注册组件
javascript
import hello from './components/hello.vue'
const app = createApp(App)
app.component("hello",hello)
app.mount('#app')
三,显示组件
javascript
<template>
<!-- 显示组件 -->
<hello />
</template>
<script >
</script>