ChangePwd.vue 417 B

12345678910111213141516171819202122232425
  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 ResetPwd from '@/views/user/ResetPwd.vue'
  12. export default {
  13. name: 'ChangePwd',
  14. components: {
  15. ResetPwd
  16. }
  17. }
  18. </script>
  19. <style lang="less" scoped>
  20. .change-pwd-card {
  21. padding-top: 50px;
  22. }
  23. </style>