Compare commits

...

1 Commits

Author SHA1 Message Date
Chris Sexton ec535babc8 slug: move slug check to beforeUpdate
Fixes #12
2020-02-20 13:20:13 -05:00
1 changed files with 5 additions and 1 deletions

View File

@ -27,10 +27,14 @@
slug: String slug: String
}, },
created() { created() {
this.save = _.debounce(this.save, 2000)
},
beforeUpdate() {
console.log('checking for slug: '+this.$props.slug)
if (this.$props.slug) { if (this.$props.slug) {
console.log('found slug: '+this.$props.slug)
this.getFile(this.$props.slug) this.getFile(this.$props.slug)
} }
this.save = _.debounce(this.save, 2000)
}, },
computed: { computed: {
tags: function () { tags: function () {