插件可以通过vue官网查看
vue官网
安装插件后开发工具中就可以看到vue菜单了。
在这里可以看到各个模块,以及模块下props data $refs等信息。
...
yekong
3年前 (2021-09-03)
喜欢
引入插件
import jQuery from 'jquery'
import '../utils/jquery.leoTextAnimate'
使用
for (var i = 0; i < 14; i++) {
jQuery(...
yekong
3年前 (2021-09-03)
喜欢
引用高德地图 在public里html引入js
<script type="text/javascript"
src="https://webapi.amap.com/maps?v=1.4.15&key=y...
yekong
3年前 (2021-09-03)
喜欢
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible&quo...
yekong
3年前 (2021-08-28)
喜欢
html
<transition name="component" appear>
<cim v-if="type==0" ></cim>
</transition&g...
yekong
3年前 (2021-08-28)
喜欢
html
<qrCode @getlist="gethead" :list="headlist" class="ml16"/>
<el-table
ref="multip...
yekong
3年前 (2021-08-26)
喜欢
有两个地方都引用了babel-polyfill
删除其中一个就可以了。
...
yekong
3年前 (2021-08-26)
喜欢
index自动累加,超过list长度index则归零
getactive() {
if (this.active < this.list.length - 1) {
this.active = this.active + 1
} else {
...
yekong
3年前 (2021-08-23)
喜欢
<img v-if="weather.text_day=='晴'" src="dist/img/tianqi/icon_qing.jpg" alt="">
...
yekong
3年前 (2021-08-22)
喜欢
input::-webkit-input-placeholder {
color: rgba(0, 204, 254, 1);
}
input::-moz-input-placeholder {
color:rgba(0, 204, 254, 1);
...
yekong
3年前 (2021-08-19)
喜欢