You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
290 B
Vue
13 lines
290 B
Vue
3 years ago
|
<script setup>
|
||
|
// This starter template is using Vue 3 <script setup> SFCs
|
||
|
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
|
||
|
import HelloWorld from './components/HelloWorld.vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<HelloWorld msg="Demo-helm" />
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
</style>
|