Files
newfreeplanet_OLD/src/components/CVideo/CVideo.ts

24 lines
326 B
TypeScript
Raw Normal View History

2021-09-16 21:08:02 +02:00
import { defineComponent, ref, computed } from 'vue'
export default defineComponent({
name: 'CVideo',
props: {
myvideokey: {
type: String,
required: true,
},
title: {
type: String,
required: false,
default: '',
},
},
setup(props, { emit }) {
return {
}
}
})