起风了

“路海长 青夜旷 越过群山追斜阳”

微信小程序超出后…

overflow: hidden;text-overflow: ellipsis;white-space: nowrap;    文章转载于:https://www.cnblogs.com/wuliujun521/p/13397399.html 原著是一个有趣的人,若有侵权,请通知删除

element UI

https://cloud.tencent.com/developer/section/1489884    文章转载于:https://www.cnblogs.com/wuliujun521/p/13363233.html 原著是一个有趣的人,若有侵权,请通知删除

Vue脚手架结构及vue-router路由配置

Vue脚手架结构及vue-router路由配置缩略图
首先官网介绍,用 Vue.js + vue-router 创建单页应用,是非常简单的。使用 Vue.js ,我们已经可以通过组合组件来组成应用程序,当你要把 vue-router 添加进来,我们需要做的是,将组件(components)映射到路由(routes),然后告诉 vue-router 在哪里渲染它们。 先介绍下Vue脚手架结构:  在我们搭建vue环...

vue获取验证码倒计时

vue获取验证码倒计时缩略图
<template> <div> <el-button :disabled="disabled" @click="sendcode" class="sendcode">{{btntxt}}</el-button> </div></template> <script>export default { data() { return { disabled:false, time:5, btntxt:"发送验证码", }; }, methods: { sendcode(){ t...

git常用命令

git常用命令缩略图
1.本地库初始化:git init2.设置签名:(1)项目级别(项目里面) git config user.name xxx git config user.email xxx(2)系统级别(所有的项目) git config --global user.name xxx git config --global user.email xxx3.查看状态:git status (查看工作区、暂存区状态)4....

Git使用方法以及出现的bug解决方案

Git使用方法以及出现的bug解决方案缩略图
git常用命令 1.本地库初始化: git init 2.设置签名 (1)项目级别(项目里面) git config user.name xxx git config user.email xxx(2)系统级别(所有的项目) git config --global user.name xxx git config --global user.email xxx 3.查看状态: git status (查看工作区、暂存区状...

微信支付

引入js <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> function onBridgeReady(){WeixinJSBridge.invoke('getBrandWCPayRequest', {"appId":pames.appId, //公众号名称,由商户传入"timeStamp":pames.timeStamp, //时间戳,自1970年以来...

Input的校验表达式

1、只是不能输入空格 <input type="text" onkeyup="this.value=this.value.replace(/^ +| +$/g,'')"> 2、不能输入空格及英文状态下的逗号 <input type="text" onkeyup="this.value=this.value.replace(/[, ]/g,'')"> 3、只能输入数字 <input type="text" maxlength="11" onkeyup="value=...

vue报错解决方案

Vue build faild解决办法: https://blog.csdn.net/u011169370/article/details/83346176? jbcmVideo git:(oahcoay) ? npm run build> jbcm_video@1.0.0 build /Users/macbookpro/Downloads/workspace/jbcm/jbcmVideo> node build/build.js? building for production.../Users/macbookpro/Downloads/w...