首页和library布局调整
This commit is contained in:
@@ -112,7 +112,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent,ref,reactive,toRefs ,onMounted} from "vue";
|
||||
import { defineComponent,ref,reactive,toRefs ,computed} from "vue";
|
||||
import { Https } from "@/tool/https";
|
||||
import { isEmail } from "@/tool/util";
|
||||
import { setCookie ,WriteCookie } from "@/tool/cookie";
|
||||
@@ -132,7 +132,9 @@ export default defineComponent({
|
||||
const {locale} = useI18n()
|
||||
const store = useStore();
|
||||
let register = reactive({
|
||||
registerModel:false,
|
||||
registerModel:computed(()=>{
|
||||
return store.state.UserHabit.isBindEmail
|
||||
}),
|
||||
registerModelMask:true,
|
||||
pageWidth:'45%'
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user