Rohit Yadav c5f00dfdae test/demo custom component
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
2021-01-20 07:06:12 +05:30

24 lines
227 B
Vue

<template>
<div>
<h1>Hello CCCNA19!</h1>
</div>
</template>
<script>
export default {
name: 'TestDemo',
components: {
},
data () {
return {
}
},
methods: {
}
}
</script>
<style scoped>
</style>