<template>
<view class="flex-col page">
<view class="flex-col group_5">
<view class="ju...
yekong
3年前 (2022-01-12)
喜欢
在一些情况下父类的面积太大,但是又需要父类遮挡住的区域允许穿透点击,但是父类下的子类不允许穿透,要可以点击到。
给子类单独写一下就可以了。
.fu {
pointer-events: none;
}
.zi{
pointer-events: initial;
}
...
yekong
3年前 (2022-01-12)
喜欢
vue开发展开收缩动画效果
运行实例
代码
<template>
<div class="renyuan">
<div class="renyuanuser cur" v-show="...
yekong
3年前 (2022-01-12)
喜欢
这里的图标使用的font-awesome,所以使用前需要先安装font-awesome字体图标组件
移出旧图标
tree 有单独设置图标的方法icon-class ,但是需要设置两个不一样的图标,所以就不用他的方法了。置空就可以了。
icon-class=" &quo...
yekong
3年前 (2022-01-11)
喜欢
安装
npm install font-awesome --save
引用
在main.js中引入
import 'font-awesome/css/font-awesome.min.css';
使用
<i class="fa fa-home fa-lg&qu...
yekong
3年前 (2022-01-11)
喜欢
<template>
<view class="changepwd">
<u--form labelPosition="left" labelWidth="80" :model=&q...
yekong
3年前 (2022-01-11)
喜欢
mac一直用phpStorm开发vue项目,习惯了,使用 Hbuilderx开发app时,删除了几个文件,以为可以像phpStorm一样 Ctrl+z就可以恢复呢, 结果发现不行,最终只能重新再写一份了。所以使用Hbuilderx删除文件前,记得先备份一下 或者先提交一下git避...
yekong
3年前 (2022-01-11)
喜欢
uniapp进行微信小程序开发需要wx.login获取code 代码记录一下
login() {
var that = this;
uni.login({
provider: 'weixin',
success: function(res) {...
yekong
3年前 (2022-01-11)
喜欢
<button class="justify-center button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
...
yekong
3年前 (2022-01-11)
喜欢
vue 单屏
<template>
<div class="shipin1">
<div class="shipin1item active"><img src="../...
yekong
3年前 (2022-01-10)
喜欢