other components... (2)
This commit is contained in:
23
src/components/CVideo/CVideo.ts
Executable file
23
src/components/CVideo/CVideo.ts
Executable file
@@ -0,0 +1,23 @@
|
||||
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 {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user