This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-09-06_reuse-01-startin.../src/mixins/alert.js

16 lines
219 B
JavaScript

export default {
data() {
return {
alertIsVisible: false
};
},
methods: {
showAlert() {
this.alertIsVisible = true;
},
hideAlert() {
this.alertIsVisible = false;
}
}
};