We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f6e86 commit bfdcb19Copy full SHA for bfdcb19
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-wordpress",
3
- "version": "1.0.6",
+ "version": "1.0.7",
4
"description": "A collection of Vue components and mixins for use with WordPress and the WP-REST API",
5
"author": "WakeCoder <ajqajq@gmail.com>",
6
"scripts": {
src/components/post.vue
@@ -21,9 +21,11 @@
21
}
22
</style>
23
<script>
24
+import wpMixin from '../mixins/wp-mixin'
25
export default {
26
name: 'post',
27
props: ['post', 'imgSize'],
28
+ mixins: [wpMixin],
29
computed: {
30
imageSource() {
31
return this.getImageSource(this.post, this.imgSize)
0 commit comments