logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

element-ui dialog问题:1.dialog的确定取消按钮没有自动靠右

1.dialog的确定取消按钮没有自动靠右<el-dialog :title="spec_formTitle" :visible.sync="specform_DialogVisible" width="70%"><el-form :model="spec_form" labe

element的Form表单使用注意事项

在用vue+element 组件开发的过程中所遇到的问题。Question1: el-form 上添加disabled 目前不起作用,原因是项目安装的element-ui版本太低了<el-form disabled :model="dynamicValidateForm" ref="dynamicValidateForm" label-widt

10.在父子组件通信中,要注意若$on触发n次,会造成$emit触发$on的次数是n倍

In case:中间件:父组件中的.vue methods:{listensub:()=>{//注意这个会多次成倍的触发connector.$on("phone",(msg)=>{console.log("msg===",msg);...

jQuery如何操作用Vue.js template的元素,用vm.$refs.id--id是vue的ref指定的一个引用

目标:我想用jQuery操作vue模板中的元素;示例html: 我是内容示例js:var vm = new Vue({updated: function () {//这样保证vue的html渲染完成,就可以用ref对其操作了this.$nextTick(function () {// Code that will run only after t

vue多页面开发的路由使用

reference:https://www.cnblogs.com/axl234/p/5899952.htmldownload vue-router.js:reference: https://unpkg.com/vue-router/dist/vue-router.js

父子孙组件的传值说明和 Vue.component 与 new Vue({components:{} })的区别说明

var myheader_child = {template: "<a >{{ geta }}{{getb}}{{getcount}}</a>",props:["geta","getb","getcount"]}var myheader = {template:

e.stopPropagation 与 e.stopImmediatePropagation的区别

在vue中使用时stopImmediatePropagation可以让事件立即结束,而stopPropagation有时会循环,这点十分重要。如下示例:$(".content-ul").on("click", ".img-li", function (e) {e.stopImmediatePropagation();if ($(&quot

保留后台返回的数据中\n 的换行功能

1.html:<p style="white-space:pre-wrap">{{c_str}}</p>2.vue.jsdata:{str : "第一行 \n 第二行"},computed:{c_str(){return decodeURIComponen...

vue2.js中配置项两个template的用法详解

1.先看vue的生命周期,图示:3步 2.重点,这个template不是<template />自带标签。template配置项专门用来替换el的。值可以是"<div></div>",也可以是全局或局部组件。2.1     template是组件的情况下必须先注册(全局或局部)2.2 如果不是组

vue.js中的表单radio,select,textarea的v-model属性的用法

只要是表单元素,其值已经不会再用value来定义了,但是placeholder还是可以用来设置默认值。section1--input:type="text"   type="text"不要在标签上定义value值(因为vue已经处理了),要用v-model="currentValue"         data:{currentValue

    共 22 条
  • 1
  • 2
  • 3
  • 请选择