vue

vue视频框文本框随意拖拽

//悬浮按钮组件<template><divcolor:rgba(128,0,0,1)">"position:relative;"><divclass="button-box"v-dragdraggable="false"><divclass="btn-bg-img"@dblc...

让sublime text3支持Vue语法高亮显示

文章转自 http://www.cnblogs.com/kongxianghai/p/6732429.html1.准备语法高亮插件vue-syntax-highlight。下载地址:https://github.com/vuejs/vue-syntax-highlight 下载页面并下载: ...

Vue 中使用 less 报错 Module build failed: TypeError: loaderContext.getResolve is not a function

https://blog.csdn.net/wxx_csdn/article/details/105807127https://www.cnblogs.com/lin-dong/p/6711224.html...

Uni-app登录态管理(vuex)

https://www.cnblogs.com/edward-life/p/11181139.html...
代码星球·2021-02-22

Vue基于vue-quill-editor富文本编辑器使用

https://www.cnblogs.com/ZaraNet/p/10209226.html...

vue的Element组件上传文件el-upload上传成功后清空

https://blog.csdn.net/qq_27721169/article/details/82906260...

vue项目如何刷新当前页面

想必大家在刨坑vue的时候也遇到过下面情形:比如在删除或者增加一条记录的时候希望当前页面可以重新刷新或者如下面这种:   如果希望点击确定的时候,Dialog对话框关闭的时候,当前http://localhost:9530/#/supplier/supplierAll页面可以重新刷新下那么...

Vue-阻止页面回退

1.原生js方法<scriptlanguage="javascript">//防止页面后退使用在vue时挂载到mounted中history.pushState(null,null,document.URL);window.addEventListener('popstate',function(){his...
代码星球·2021-02-22

vue实战之图标上传

<template><divclass="mainprintTemplateprintTemplateD"><divclass="titleBox"><el-row:gutter="20"><el-col:span="22"><divclass="gri...
代码星球·2021-02-22

Vue 删除对象中的某个属性

背景:采用v-selectPage限定v-model为string 但是后端想要接受的是个id数组官网是如此描述的 一般情况下我们在项目全局引用了Vue所以在单独的组件下面this即可,注意Vue.$delete(target,'object')方法第二个参数是字符串[也就是我们要删除的属性]&nb...

vuex状态管理

Vuex全局的状态统一管理,解决组件之间状态共享和数据通信的问题。store.jsimportVuefrom'vue'importVuexfrom'vuex'Vue.use(Vuex)//使用插件//导出store实例exportdefaultnewVuex.Store({state:{},mutations:{},a...
代码星球·2021-02-22

vue中的监听事件

<el-form:model="inforData":rules="rules"ref="inforData">  <el-form-itemlabel="手机号"prop='phone'><el-inputv-model="inforData.phone"v-bind:disabled=...
代码星球·2021-02-22

vue中公共样式

html,body,h1,h2,h3,h4,h5,h6,p,textarea,input,select,ul,ol,li,fieldset,figure{margin:0;padding:0;border:none;}html,body{height:100%;}ul,li{list-style:none;}body,...
代码星球·2021-02-22

vue学习中遇到的错误 Duplicate keys detected: '[object Object]'. This may cause an update error.

前端入门自学,说错的请大神指点。Avoidusingnon-primitivevalueaskey,usestring/numbervalueinstead.Duplicatekeysdetected:‘[objectObject]’.Thismaycauseanupdateerror.  运行后出...

Do not use built-in or reserved HTML elements as component id等等vue warn问题

报错截图示下:    是因为在本地项目对应文件的<script>中,属性name出现了错误的命名方式,导致浏览器控制台报错! 诸如: name:header 、 name:footer 、 name:menu...
代码星球·2021-02-22