[READ-ONLY] Mirror of https://github.com/danielroe/stream-vue. Vue component for Cloudflare Stream.
cloudflare stream vue vuejs
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: enable vetur autocompletion

Daniel Roe (Sep 26, 2020, 11:04 PM +0100) 22bff52e f517713b

+9 -4
+4
README.md
··· 26 26 27 27 **Note that this is not an official component.** 28 28 29 + ## Features 30 + 31 + - Vetur autocomplete for props and events 32 + 29 33 ## Quick Start 30 34 31 35 First install `stream-vue`:
+1
package.json
··· 26 26 "files": [ 27 27 "lib/**/*", 28 28 "lib/index.d.ts", 29 + "vetur/**/*", 29 30 "!**/*.map" 30 31 ], 31 32 "scripts": {
+2 -2
vetur/attributes.json
··· 3 3 "type": "string", 4 4 "description": "Either the video id or the signed url for the video you’ve uploaded to Cloudflare Stream should be included here." 5 5 }, 6 - "video-stream/adUrl": { 6 + "video-stream/ad-url": { 7 7 "type": "string", 8 8 "description": "" 9 9 }, ··· 27 27 "type": "boolean", 28 28 "description": "Shows the default video controls such as buttons for play/pause, volume controls. You may choose to build buttons and controls that work with the player." 29 29 }, 30 - "video-stream/currentTime": { 30 + "video-stream/current-time": { 31 31 "type": "number", 32 32 "description": "Returns the current playback time in seconds. Setting this value seeks the video to a new time." 33 33 },
+2 -2
vetur/tags.json
··· 2 2 "video-stream": { 3 3 "attributes": [ 4 4 "src", 5 - "adUrl", 5 + "ad-url", 6 6 "poster", 7 7 "autoplay", 8 8 "controls", 9 - "currentTime", 9 + "current-time", 10 10 "height", 11 11 "width", 12 12 "muted",