Element select has a bug, official website in the edge browser. That's it.

edge browser. After several el-select selections, the page will be refreshed, and sometimes you will jump to a 404 page (not all edge will)


<el-select @visible-change="visibleChange">
    /// options
</el-select>

export default {
    methods: {
        visibleChange(isVisible) {
            const isEdge = window.navigator.userAgent.includes('Edge');
            if (isEdge && !isVisible) {
                document
                    .querySelectorAll('body > .el-select-dropdown.el-popper')
                    .forEach((it) => it.remove());
            }
        },
    },
}

Today's test also found this problem


that's true

edge browser, with a few more operations of el-select, it is easy for the page to get stuck, and the browser shows that this page cannot be loaded

has the problem been solved

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-1b3abc5-2b784.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-1b3abc5-2b784.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?