# Vue element-ui 小撇步 ###### tags: `Vue` `element-ui` ## el-input 使用@keypress.enter會沒有反應的bug 必須加上native ``` @keypress.enter.native ="submitForm('loginForm')" //中文輸入 ``` ## element UI select 下拉選單如果設定了position:fixed 有可能導致選單會對應不到,解決辦法加上 !important ``` .el-select-dropdown { top: 128px !important; } ```