accumulatePointsApplyEdit.vue 246 B

1234567891011121314151617181920
  1. <template>
  2. <m-dialog ref="dialog">
  3. </m-dialog>
  4. </template>
  5. <script>
  6. export default {
  7. name: 'accumulatePointsApplyEdit',
  8. methods: {
  9. open () {
  10. this.$refs.dialog.open()
  11. }
  12. }
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. </style>