08335 / hivui-platform-template
hivui平台项目模板
Newer
Older
hivui-platform-template / project / hivuiMain / views / modifyPw / index.vue
<template>
    <div>
        <modifyPw :isShow="true"></modifyPw>
    </div>
</template>
<script>
import modifyPw from "@main/views/layout/components/modifyPw";
export default {
    components:{
        modifyPw,
    },
    mounted(){
        this.$store.dispatch("user/showPwDialog",true);
    }
}
</script>