
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
<template><div className="table_wrap"><table><thead><tr><th v-for="(n,i) of 6" :key="i">表头{{i}}</th></tr></thead><tbody>
以下为vue3.x 使用i18n和i18n Ally自动化翻译的步骤, vue2.x配置i18n步骤>>vue 版本> 3.0.0vue/cli 版本 4.5.13vue-i18n 版本 > 9.1.71.安装 i18nnpm install vue-i18n@next2.在vscode中安装i18n Ally插件3.配置vscode setting.json{"i18n-
https://www.cnblogs.com/whenwei123/p/14638149.html
安卓在index.html里面写<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">ios在APP.vue里面写<script>window.o
点击div以外的地方隐藏; 1.给目标div加ref,2.给document添加点击监听, 判断optionDom.contains
vue启动报错’vue-cli-service serve’我百度了很多’vue-cli-service serve’报错解决, 最后发现我忽略了一句很重要的’ Cannot find module ‘vue-loader-v16/package.json’解决’Cannot find module ‘vue-loader-v16/package.json’npm i --save-dev vue
H5页面自动撑满使用100vh,在安卓手机上没有问题, 但是在ios中出现滚动条。.box {height: 100vh;width: 100%;background-color:pink;}改成使用绝对定位.box {position: absolute;height: 100%;width: 100%;background-color:pink;}...
Wrap(children: <Widget>[for (int i = 0; i < (data.secList?.length ?? 0); i++)Text('#关键词$i')],),
flutter 获取上下文,flutter获取dom元素位置.GlobalKey anchorKey = GlobalKey();Text( 'context',key:anchorKey);var renderBox = anchorKey.currentContext?.findRenderObject() as RenderBox;var offset = renderBox.globalT
代码class TrianglePainter extends CustomPainter {final Color strokeColor;final PaintingStyle paintingStyle;final double strokeWidth;TrianglePainter({this.strokeColor = Colors.black,this.strokeWidth = 3,