vue.js学习之 打包为生产环境后,页面为白色 一:配置问题 当我们将项目打包为生产环境后,在dist文件夹下打开index.html,会发现页面为白色. 1:打开config>index.js 2:在build对象找到assetsPublicPath,值改为‘./’ 二:页面高度问题 在低版本的ios手机上,页面也是白屏,这个时候应该是html,body都没有设置高度,我们在页面加上如下代码就行: html, body { width: 100%; height: 100%; margin:…
通过配置路由,可以设置vue项目启动后默认显示的页面.路由的path设置为path:"/",启动项目后就会显示默认的组件页面. import Vue from 'vue' import Router from 'vue-router' Vue.use(Router) import Home from '../components/Home.vue' import View from '../components/View.vue' import ViewTwo from '../com…
<select v-model="citys" name="cityVal" @change="schoolName(citys)">        <option v-for="(item,index) in city" :value="item.val" v-text="item.name" ></option></select> &l…
vue的功能非常强大,但是我们作为一个后端开发人员,前端的东西不一定都弄的很明白,今天就给大家介绍一个回车提交表单的真实案例,达到回车登录的效果! @ keyup.enter 实现的效果 <input v-model = "password" type="password" name="" class="pwd" placeholder="密码" @keyup.enter="handello…
应该将v-model换成:value,因为v-model只能绑定一个值,无法绑定多个值 <select v-model="citys">       <option v-for="(item,index) in city" :value="item.val" v-text="item.name" ></option></select>…
//html页面<select id="payWay" class="easyui-combobox" name="payWay" style="width: 100%;" data-options="required:true,editable:false"> </select> //JS文件function getPayedWay(){ $.ajax({ type : "…
预期效果: 1.点击Save按钮,创建及显示loading div框 2.Save操作完成后,再删除loading 及弹出提示结果 <html> <head> </head> <body> <input type="button" value="Save" name="btnSave" /> </body> </html> <script src="…
先说方法:v-html = "你的字符串" <el-table-column type="expand" label="详情" header-align="center"> <template slot-scope="scope"> <div v-html="scope.row.steps"></div> </template>…
出错点:确认按钮上.加onclick事件.每次点击都会追加给form追加on监听方法.累加on方法,重复提交 suppress_exception:true 阻止异常 (百度推送 jdk) 向下按 preventDefault ( jquery 阻止 form默认提交) 01传递参数,显示或者隐藏弹出框 /*start 显示和隐藏遮罩*/ function controlShade(date){ if(date == 's'){ $(".mask").show();  //添加遮罩,h…
1. Vue.js 介绍 Vue,读音 /vjuː/,类似于 view),是一套用于构建用户界面的渐进式框架(重点在于视图层). 作者:尤雨溪 注:学习 vue.js 时,一定要抛弃 jQuery 的思想(jQuery的特点在于强大的选择器.dom操作,而vue.js 的特点在于数据驱动来实现数据和显示相分离) 特点: 数据驱动,数据(模型层).视图层的分离 双向数据绑定:MVVM Model变化,View视图也跟着变化 View视图变化,Model模型也跟着变化 SPA(Single Page…