Vue uses the mui plug-in to report an error message mui is not defined

after installing npm I vue-awesome-mui , I introduced

into the entry file.

import Mui from "vue-awesome-mui";
Vue.use (Mui);
and then write this wrong in index.html.
prompts Uncaught ReferenceError: mui is not defined

of the first line
<script>
mui.init({   // Uncaught ReferenceError: mui is not defined`
  keyEventBind: {
    backbutton: true //back
  }
});
// //
// //:1;
var first = null;
mui.back = function() {
  // 
  if (!first) {
    first = new Date().getTime(); //
    // mui.toast(""); //
    history.go(-1); //
    setTimeout(function() {
      //1s
      first = null;
    }, 1000);
  } else {
    if (new Date().getTime() - first < 1000) {
      //1s
      plus.runtime.quit(); //app
    }
  }
};
</script>
Feb.22,2022

you can't write this way. The packaged script is added dynamically. The logic of
can be written in main.js.

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