12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="about">
- <h1 @click="showDialog">This is an about page</h1>
- <HealthReport :show="show" @closed="(res) => { this.show=false; }" />
-
- </div>
- </template>
- <script>
- import HealthReport from "@com/other/healthReport/index.vue";
- export default {
- data () {
- return {
- show: false
- }
- },
- components: {
-
- HealthReport
- },
- methods: {
- showDialog () {
- this.show = true;
- }
- }
- };
- </script>
|