<template> <div /> </template> <script> export default { data() { return { show: false, }; }, components: {}, methods: { toggleModal() { this.show = !this.show; }, }, }; </script>