ChangePwd.vue 487 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <a-card :bordered="false" class="change-pwd-card">
  3. <a-row :gutter="24">
  4. <a-col span="12" offset="6">
  5. <ResetPwd />
  6. </a-col>
  7. </a-row>
  8. </a-card>
  9. </template>
  10. <script>
  11. import { commonMixin } from '@/utils/mixin'
  12. import ResetPwd from '@/views/user/ResetPwd.vue'
  13. export default {
  14. name: 'ChangePwd',
  15. mixins: [commonMixin],
  16. components: {
  17. ResetPwd
  18. }
  19. }
  20. </script>
  21. <style lang="less" scoped>
  22. .change-pwd-card {
  23. padding-top: 50px;
  24. }
  25. </style>