123456789101112131415161718192021222324252627 |
- <template>
- <a-card :bordered="false" class="change-pwd-card">
- <a-row :gutter="24">
- <a-col span="12" offset="6">
- <ResetPwd />
- </a-col>
- </a-row>
- </a-card>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import ResetPwd from '@/views/user/ResetPwd.vue'
- export default {
- name: 'ChangePwd',
- mixins: [commonMixin],
- components: {
- ResetPwd
- }
- }
- </script>
- <style lang="less" scoped>
- .change-pwd-card {
- padding-top: 50px;
- }
- </style>
|