You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For custom options you can pass an `options` prop which is an object
144
155
that will be passed to the `new Plyr()`creation. Available options
145
156
[here](https://github.com/sampotts/plyr#options). I added an additional
146
157
option (`hideYouTubeDOMError`) that hides the error that is always
147
158
logged when destroying a YouTube player. It defaults to `true`, and you
148
-
can disable it to see the error by setting it to false.
159
+
can disable it and see the error by setting it to false.
149
160
150
161
## SSR
151
-
152
-
This should support SSR out of the box. For nuxt, create a file called `vue-plyr.js` in your plugins folder containing
153
-
only the three lines:
162
+
### Nuxt
163
+
This should support SSR out of the box. For[nuxt](https://nuxtjs.org/), create a file called `vue-plyr.js` in your plugins folder containing
164
+
only these three statements:
154
165
```js
155
166
import Vue from 'vue'
156
-
importVuePlyrfrom'vue-plyr'
167
+
import VuePlyr from 'vue-plyr/dist/vue-plyr.ssr.js'
157
168
158
169
// The second argument is the default config values which can be omitted.
159
170
Vue.use(VuePlyr, {
@@ -163,10 +174,7 @@ Vue.use(VuePlyr, {
163
174
emit: ['ended']
164
175
})
165
176
```
166
-
167
-
Then, in your `nuxt.config.js` file add `'~/plugins/vue-plyr'` to the plugins array. The `vue-plyr` element should be globally registered now. I might add a nuxt config file to the package at some point in the future so that you do not have to create the file yourself, but currently you have to make it manually.
168
-
169
-
You will also want to add `vue-plyr/dist/vue-plyr.css` to your css array in the same file.
177
+
Then, in your `nuxt.config.js` file add `'~/plugins/vue-plyr'` to the plugins array. The`vue-plyr` element should be globally registered now.
170
178
171
179
The `nuxt.config.js` file should at minimum include this:
172
180
```js
@@ -177,6 +185,15 @@ export default {
177
185
}
178
186
```
179
187
180
-
## Author
188
+
Alternatively, you can use the provided plugin file (contents are exactly as above) like this:
0 commit comments