atst/js/components/fullpagenotice.js

16 lines
197 B
JavaScript

export default {
name: 'fullpagenotice',
data: function() {
return {
visible: false,
}
},
methods: {
displayNotice: function() {
this.visible = true
},
},
}