Vee-validate cannot enter input when entering the page for the first time

The

project introduced vux and veevalidate, but found that when the page was loaded for the first time, the input of all pages could not be entered, but after a refresh, the input of all pages could be entered

.

at present, my solution is to set up an automatic refresh mechanism

beforeCreate() {
    if(!sessionStorage.getItem("userManage")){
        sessionStorage.setItem("userManage", "1");
        window.location.reload();
    }else{
        setTimeout(function() {
            sessionStorage.removeItem("userManage");
        }, 100)
    },

but this method will be refreshed twice when the page is used for routing redirection, and the effect is not satisfactory. Is there any better solution, or is there a conflict between the two frameworks?

May.10,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b351d3-40fab.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b351d3-40fab.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?