简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
<template><div class="editing" :style="styleVar"></div></template>export default {props: ["editHeight"],computed: {styleVar() {return {"--edit-height": this.editHeight +
vuex中的 mapState,mapGetters 属于辅助函数,其实就是vuex的一个语法糖,使代码更简洁更优雅。<script>import { mapState, mapGetters } from "vuex"export default {computed: {//原先templateInfo(){return this.$store.state.templateInfo}
vue-router 中有hash模式和history模式。在vue的路由配置中有mode选项,最直观的区别就是在url中hash 带了一个 # ,而history是没有#的,vue默认使用hash。mode:“hash”;mode:“history”;hash即地址栏 URL 中的 # 符号(此 hash 不是密码学里的散列运算)。比如这个 URL:http://www.baidu.com/#/
最近做了个摇一摇类似的功能,使用的是shake.js,但在ios13.3之前的版本中可以触发摇一摇,之后的版本需要兼容,需要制作一个让用户能手动点击的弹框,才能使用户授权动作与方向的权限。(要使用https的协议)<van-popup v-model="isTip" class="popInfo":style="{ zIndex: '2010' }" :close-on-click-over
fetch缺陷1.fetch默认不会带cookie,需要添加配置项, 要用crendentials:“include”,2.fetch不支持abort,不支持超时控制,axios好处1.提供了一些并发请求的接口function getUserAccount() {return axios.get('/user/12345');}function getUserPermissions() {retu
1.使用竖向滚动时,需要给一个固定高度,通过 css 设置 height;<scroll-viewscroll-y="true" scroll-with-animation :show-scrollbar="true" style="height:800rpx"></scroll-view>2.使用横向滚动式,需要给添加white-space: nowrap;样式样式里用f
uniapp中给头部右侧增加图标或文字。