10 2020 档案
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
摘要:function GenNonDuplicateID() { let str = ''; str = Math.random().toString(36).substr(3); str += Date.now().toString(16).substr(4); return str; }
阅读全文
摘要:<div class="bianji markdown-body"> <mavon-editor ref="md" @change="handleMarkdownChange" @imgAdd="handleEditorImgAdd" @imgDel="imgDel" :ishljs="true"
阅读全文
摘要:isExcel(type,name, data) { const link = document.createElement('a') const blob = new Blob([data]) link.style.display = 'none' link.href = URL.createOb
阅读全文
摘要:<input v-on:keyup.enter="submit">//局部 //全局methods: { handleKeyDown(e) { let key = null; if (window.event undefined) { key = e.keyCode; } else { key =
阅读全文