import icons from "@/components/icons";
<icons :type="item.contentType" :is-active="active==index"><...
yekong
3年前 (2022-04-12)
喜欢
vue开发 实现 ppt 在线预览 iframe
/**
* @Author: 858834013@qq.com
* @Name: pptView
* @Date: 2022-04-11
* @Desc:
*/
<template>
<div class=...
yekong
3年前 (2022-04-11)
喜欢
vue开发 实现pdf预览iframe形式
/**
* @Author: 858834013@qq.com
* @Name: pdf
* @Date: 2022-04-11
* @Desc:
*/
<template>
<div class="...
yekong
3年前 (2022-04-11)
喜欢
安装依赖
npm i vue-pdf --save
使用文档
使用文档
实现代码
/**
* @Author: 858834013@qq.com
* @Name: pdf
* @Date: 2022-04-11
* @Desc:
*/
<template>
&...
yekong
3年前 (2022-04-11)
喜欢
组件代码
<template>
<div class="tabs">
<div class="tab cur" :class="{active:active==index}" @cl...
yekong
3年前 (2022-04-08)
喜欢
组件对参数做处理并返回,判断参数是否为数字,如果是数字则带上元,如果没有则不带。
<template>
<div>
{{ newMoney }}
</div>
</template>
<script>
exp...
yekong
3年前 (2022-03-26)
喜欢
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)
喜欢