Skip to content
Snippets Groups Projects
TestView.vue 221 B
<template>
  <div />
</template>

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