07 2022 档案
摘要:1. 卸载之前跟node相关的东西, node-sass sass sass-loader sass-node .... 2. 重新安装node npm install sass-loader@8.0.2 sass@1.26.5 -D
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content
阅读全文
摘要:from flask import Blueprint, request from utils.resp import resp from validators.user_validator import RegisterForm from werkzeug.datastructures impor
阅读全文
摘要:父组件 <template> <el-button type="primary" @click="faEvent">父组件</el-button> <hr /> <!-- 父2子 步骤 1. 定义ref --> <!-- 子2父 步骤 3. 父组件创建自定义事件 --> <SonCpt ref="s
阅读全文
摘要:父组件触发子组件事件 1. 父组件内使用子组件, 并且给出 ref 值 <EditCpts ref="editCptsRef" @refresh="refresh" /> 2. setup 函数中获取引用 const editCptsRef = ref() 3. 需要把引用导出去, 不然会是 und
阅读全文