All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s
10 lines
156 B
Vue
10 lines
156 B
Vue
|
|
<script setup lang="ts">
|
|
import Header from './components/Header.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<h1>Here is a child component!</h1>
|
|
<Header />
|
|
</template>
|