Files
newfreeplanet_OLD/src/components/CVideo/CVideo.ts
2021-09-16 21:08:02 +02:00

24 lines
326 B
TypeScript
Executable File

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 {
}
}
})