摘要:
axios axios({ url: "xxx", data: JSON.stringify({ a: "001", b: "xxx", }), async: false, cache: false, method: "POST", contentType: "application/json", 阅读全文
摘要:
父执子 在子组件上标注ref="childComponent" this.$refs.childComponent.getZoneQuery(); 子执父 this.$parent.xxx(res.data.result, '3', string) 阅读全文
摘要:
中文为主:可以默认使用 word-break: normal;。 中英文混排: overflow-wrap: break-word;。 主要为英文或数字:需要强制换行时,使用 word-break: break-all;。 阅读全文
摘要:
https://vant-ui.github.io/vant/v2/#/zh-CN/advanced-usage 阅读全文
摘要:
绝对路径(带斜杠) 当路径以斜杠 / 开头时,它被视为绝对路径。这意味着无论当前的路由位置在哪里,新路径都将从应用程序的根路径开始解析。 示例: this.$router.push('/formDesinger'); 行为:不论当前页面的位置如何,都会导航到 /formDesinger。 适用场景: 阅读全文
摘要:
https://alphacoders.com/resolution/4k-wallpapers 阅读全文
摘要:
https://demo.grapecity.com.cn/spreadjs/help/api/designer/classes/GC.Spread.Sheets.Designer.Designer#getworkbook 阅读全文
摘要:
npm install --registry=https://registry.npmmirror.com 阅读全文
摘要:
<img v-if="item.p1" :src="'data:image/jpeg;base64,' + item.p1" alt="" style="width: 500px;height: 368px;" /> 阅读全文