changed to if-else to save on one line

environments/dev/deployments/1
hakui 8 years ago
parent 14237cff77
commit af91346328

@ -25,8 +25,8 @@ const Notifications = {
},
watch: {
unseenCount (count) {
this.$store.dispatch('setPageTitle', `(${count})`)
if (count==0) this.$store.dispatch('setPageTitle', '')
if (count>0) this.$store.dispatch('setPageTitle', `(${count})`)
else this.$store.dispatch('setPageTitle', '')
}
},
methods: {

Loading…
Cancel
Save