11 2021 档案

摘要:1.父传子父组件:在子组件上通过 v-bind绑定属性子组件:先定义下基本类型,然后通过setup的第一个参数取获取传过来的值(详细代码见下面)2.子传父父组件:在子组件上绑定一个事件,并定义回调子组件:通过setup的第二个参数去接受,第二个参数包含了(attrs,emit,slots),这里我们 阅读全文
posted @ 2021-11-17 15:40 Magi黄元 阅读(766) 评论(0) 推荐(0) 编辑
摘要:简单数据ref复杂数据reactive 使用方法: // useCount.js import {ref,reactive,computed} from 'vue' export default function useCount() { // 简单数据定义及使用 let count = ref(0 阅读全文
posted @ 2021-11-17 15:04 Magi黄元 阅读(661) 评论(0) 推荐(0) 编辑
摘要:Solution 1: 给absolute元素的left设为50%, margin-left设为absolute元素宽度一半的负数 .con{ width:200px; height:200px; background:#ccc; position:relative; } .abs{ width:4 阅读全文
posted @ 2021-11-17 10:19 Magi黄元 阅读(596) 评论(0) 推荐(0) 编辑
摘要:1.原npm地址 npm config set registry http://registry.npmjs.org 2.设置国内镜像 a.通过config命令 npm config set registry https://registry.npm.taobao.org npm info unde 阅读全文
posted @ 2021-11-16 16:21 Magi黄元 阅读(967) 评论(0) 推荐(0) 编辑
摘要:window.onload = function(){ /*720代表设计师给的设计稿的宽度,你的设计稿是多少,就写多少;100代表换算比例,这里写100是 为了以后好算,比如,你测量的一个宽度是100px,就可以写为1rem,以及1px=0.01rem等等*/ getRem(720,100) }; 阅读全文
posted @ 2021-11-02 14:09 Magi黄元 阅读(38) 评论(0) 推荐(0) 编辑