vue开发
组件需求
需要一个输入框,输入内容后,回车添加到标签列表,展示出来,并将标签列表的值逗号分割,返回给上层组件。
上层组件传值逗号分割的字符串给本组件,本组件将字符串处理为列表展示出来。
运行实例
<template>
<div>
...
yekong
3年前 (2022-03-25)
喜欢
vue项目开发需要一个图片列表,并进行大图预览
一个图片列表组件,根据图片名称追加图片地址,并结合el-image实现大图预览
图片列表组件
<template>
<div class="uploadimg">
<di...
yekong
3年前 (2022-03-23)
喜欢
vue开发中列表中接口会返回id拼接的字符串,但是我们需要将这些id转为他们对应的标题拼接,通过逗号分割的字符串换取,逗号分割的name,记录一下方便后期复用。
处理前
0,1
处理后
现场领取,发送电子档
使用
<template slot-scope="s...
yekong
3年前 (2022-03-23)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: typeName
* @Date: 2022-03-21
* @Desc:
*/
<template>
<div>
{{ typeName }}
</d...
yekong
3年前 (2022-03-21)
喜欢
主要使用到transition
-webkit-transition: .2s;
transition: .2s;
.homeListItem {
width: 282px;
height: 281px;
background: #FFFFFF;
box...
yekong
3年前 (2022-03-20)
喜欢
字符串过滤
title.replace(/^(.).*(.)$/, "$1******$2")
处理前
都是收费到第三方
处理后
都******方
...
yekong
3年前 (2022-03-18)
喜欢
getjwd(x, y, index) {
// 获取经纬度
var that = this;
console.log('获取经纬度')
var ggPoint = new BMap.Point(x, y);
v...
yekong
3年前 (2022-03-18)
喜欢
安装依赖
cnpm i leaflet --save
引用
main.js
import L from "leaflet";
import "leaflet/dist/leaflet.css";
初始化
<div id=&quo...
yekong
3年前 (2022-03-17)
喜欢
vue项目开发使用mqtt
安装依赖
npm i mqtt --save
引用
import mqtt from 'mqtt'
创建链接
mqttAccessToken() {
var that = this;
mqttAccessToken(...
yekong
3年前 (2022-03-07)
喜欢
安装依赖
npm i html2canvas --save
引入
import html2canvas from "html2canvas"
使用
<div class="body-content" ref='creatImg'&...
yekong
3年前 (2022-03-05)
喜欢