logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue:el-select同时获取多个值

el-select获取的是value的值。如果想同时获取多个值,可以试试如下方法:<el-form-item label="所属角色" prop="roleName"><el-select v-model="temp.roleName" placeholder="角色" @change="handleRoleChange"><el-option v-for="item

#vue.js#elementui#javascript
Vue3+vite环境变量配置

定义:变量以 VITE_XXX进行定义。如果想自定义 env 变量的前缀,可以在vite.config.js里配置envPrefix。获取:import.meta.env.VITE_XXX和通常使用import.meta.env.VITE_XXX可以获取到环境变量,而vite.config.js除外。return {envPrefix: ['VITE', 'VUE'], // 环境变量前缀,默认只

文章图片
#javascript#前端#vue.js
vue~金额、数量格式化

金额千分位(保留两位小数);数量千分位(整数)// 用法:{{todaymoney|SumFormat}}Vue.filter('SumFormat', function(value) {//console.log(value)if(!value) return '0.00';var intPart =Number(value)|0; //获取整数部分var intPartFormat = int

#javascript#html5#vue.js
Vue3+ElementPlus设置菜单选中

做后台系统开发时,跳转路由需要保持父页面选中的状态,这时只需配置一个参数即可。第一步:配置路由{path: "list",name: "DataList",meta: { title: "数据列表" },children: [{path: '',

#前端
vite 设置启动Network 为本地ip

vue3+vite搭建页面启动之后只有localhost:3000,> Network: use `--host` to expose> Local: http://localhost:3000/打开vite.config.js,添加server--host,import { defineConfig } from 'vite'import vue from '@vitejs/plug

#tcp/ip#vue.js#前端
VUE3 跳转传参及接收参数的方式

1.通过query传参:// 传参const handleJump = (id) => {router.push({path: '/xxx',//router里的路由配置query: {id: id}})}// 参数接收onMounted(() => {console.log("获取到的参数", pr

#javascript#vue.js#前端
vue跨域问题:The value of the ‘Access-Control-Allow-Credentials‘ header in the response is...

跨域报错如下:由于我在封装axios时,设置了这个://允许跨域携带cookie信息axios.defaults.withCredentials = true;这一条允许在请求头里带上cookie信息。如果前端配置了withCredentials=true,后端设置Access-Control-Allow-Origin不能为 " * ",而必须是你的源地址。header("Access-Contr

#前端
vue获取选中的option值

使用@change监听事件实时获取option值<div id="app"><select v-model="currentId" @change="change($event)"><option v-for="(item,index) in productList" :key="index" :value="item.id" v-text="i...

element-plus:清空select选择器

element-plus:清空select选择器

#vue.js#elementui
vue3 app.directive()防止用户多次连续点击按钮

在项目中,需要对操作按钮加以限制,来防止用户多次连续点击。这就需要用到自定义指令directive。

到底了