hideNav.js 255 B

12345678910111213
  1. import { is_weixin } from "@/utils/util.js";
  2. const hideNav = {
  3. install (app) {
  4. app.directive('hideNav', {
  5. mounted(el, binding) {
  6. if(is_weixin()){
  7. el.remove();
  8. }
  9. },
  10. })
  11. }
  12. }
  13. export default hideNav;