uts-dialog-page.uvue 513 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<template>
  <view class="content">
    <button @tap="doOpendDialogpage()">open dialogpage</button>
  </view>

</template>

<script>
  import { testOpenDialogPage, testCloseDialogPage } from '@/uni_modules/uts-dialogpage';
  export default {
    data() {
      return {}
    },
    onLoad() {

    },
    methods: {
      doOpendDialogpage() {
        testOpenDialogPage("/pages/API/dialog-page/dialog-page")
      }
    }
  }
</script>

<style>
  .content {
    flex: 1;
  }
</style>