Electron
Electron允许web程序员用Javascript、HTML、CSS来编写运行于Windows、macOS、Linux跨平台的桌面应用
环境安装Node.js
node.js下载最新稳定版本
安装Electron
npm install -g electro...
yekong
4年前 (2021-01-09)
喜欢
var num = -10;
var num2 = Math.abs(num);
...
yekong
4年前 (2021-01-08)
喜欢
html
<popup-picker @on-change="myChange($event,something)"></popup-picker>
js
methods:{
myChange(val,something){
...
yekong
4年前 (2021-01-03)
喜欢
editor.customConfig.linkCheck = function(text, link) {
if (link != "") {
var reg = /(http|ftp|https):\/\/[\w\-_]...
yekong
4年前 (2021-01-03)
喜欢
editor.customConfig.customUploadImg = (files, insert) => {
for (var i = 0; i < files.length; i++) {
var formD...
yekong
4年前 (2021-01-03)
喜欢
vue监听页面大小变化
mounted: function () {
window.addEventListener('resize', this.getHeight)
},
beforeRouteLeave(to, from, next) {
...
yekong
4年前 (2020-12-30)
喜欢
div部分
<div class="anbaoxinxi" id="drift" @mousedown="mousedown">
拖动内容
</div>
js部分
mou...
yekong
4年前 (2020-12-30)
喜欢
html
<div class="uploadlist">
<div class="uploadlistitem" v-for="(item,index) in list2&qu...
yekong
4年前 (2020-12-28)
喜欢
<style>
[v-cloak] {
display: none;
}
</style>
<div v-cloak id="home">
</div>
...
yekong
4年前 (2020-12-25)
喜欢
保留前三位后三位
let accountNo = '123456789123456789'
accountNo.substr(0,3) + '******' + accountNo.substr(accountNo.length - 3)
保...
yekong
4年前 (2020-12-22)
喜欢