Closed OctaneInteractive closed 2 years ago
Hi, I've tried both import methods but I'm getting the same warnings from npm run dev:
npm run dev
WARNING Compiled with 14 warnings 11:23:44 warning in ./node_modules/vue-vimeo-player/dist/index.es.js 125:4-13 "export 'onMounted' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 132:4-19 "export 'onBeforeUnmount' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 135:4-9 "export 'watch' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 140:4-9 "export 'watch' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 145:10-15 "export 'toRef' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 145:4-9 "export 'watch' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 174:22-40 "export 'createElementBlock' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 174:9-18 "export 'openBlock' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 61:21-24 "export 'ref' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 63:18-24 "export 'toRefs' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 82:10-15 "export 'unref' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 83:19-24 "export 'unref' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 86:10-15 "export 'unref' was not found in 'vue' warning in ./node_modules/vue-vimeo-player/dist/index.es.js 87:18-23 "export 'unref' was not found in 'vue'
WARNING Compiled with 14 warnings 11:23:44
warning in ./node_modules/vue-vimeo-player/dist/index.es.js
125:4-13 "export 'onMounted' was not found in 'vue'
132:4-19 "export 'onBeforeUnmount' was not found in 'vue'
135:4-9 "export 'watch' was not found in 'vue'
140:4-9 "export 'watch' was not found in 'vue'
145:10-15 "export 'toRef' was not found in 'vue'
145:4-9 "export 'watch' was not found in 'vue'
174:22-40 "export 'createElementBlock' was not found in 'vue'
174:9-18 "export 'openBlock' was not found in 'vue'
61:21-24 "export 'ref' was not found in 'vue'
63:18-24 "export 'toRefs' was not found in 'vue'
82:10-15 "export 'unref' was not found in 'vue'
83:19-24 "export 'unref' was not found in 'vue'
86:10-15 "export 'unref' was not found in 'vue'
87:18-23 "export 'unref' was not found in 'vue'
In the client, I get the same warnings but with additional information (I could share, if required, but it is a lot), followed by the warning:
[Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.
The code is correct:
<vimeo-player :video-id="assetOfInterest.attributes[0].mediaItemAddress[1]"></vimeo-player>
// Twitter. import { Timeline, Tweet } from 'vue-tweet-embed' import { vueVimeoPlayer } from 'vue-vimeo-player' // Mixins. import { StateManagement } from '../../../mixins/StateManagement' export default { name: 'AssetMedia', components: { Timeline, Tweet, vueVimeoPlayer } ...
I'm using Vue 2.5.2
I've since seen this package is for Vue 3 not 2 — feel free to delete!
Use the other branch for Vue 2
Hi, I've tried both import methods but I'm getting the same warnings from
npm run dev
:In the client, I get the same warnings but with additional information (I could share, if required, but it is a lot), followed by the warning:
The code is correct:
<vimeo-player :video-id="assetOfInterest.attributes[0].mediaItemAddress[1]"></vimeo-player>
I'm using Vue 2.5.2