logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 表格固定首行首列(纯css)

<template><div className="table_wrap"><table><thead><tr><th v-for="(n,i) of 6" :key="i">表头{{i}}</th></tr></thead><tbody>

#css#vue.js#css3
vue3.x使用i18n和i18n Ally自动化翻译

以下为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-

vue3 slot插槽传值

https://www.cnblogs.com/whenwei123/p/14638149.html

#vue.js
vue h5移动端禁止缩放

安卓在index.html里面写&lt;meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"&gt;ios在APP.vue里面写&lt;script&gt;window.o

vue 点击div以外的地方隐藏

点击div以外的地方隐藏; 1.给目标div加ref,2.给document添加点击监听, 判断optionDom.contains

#vue.js#javascript#前端
vue启动报错‘vue-cli-service serve‘

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

#vue.js#npm#前端
H5页面自动撑满使用100vh, 但是在ios中出现滚动条

H5页面自动撑满使用100vh,在安卓手机上没有问题, 但是在ios中出现滚动条。.box {height: 100vh;width: 100%;background-color:pink;}改成使用绝对定位.box {position: absolute;height: 100%;width: 100%;background-color:pink;}...

#ios#css
flutter 使用for循环

Wrap(children: <Widget>[for (int i = 0; i < (data.secList?.length ?? 0); i++)Text('#关键词$i')],),

#flutter
flutter 获取上下文,flutter获取dom元素位置

flutter 获取上下文,flutter获取dom元素位置.GlobalKey anchorKey = GlobalKey();Text( 'context',key:anchorKey);var renderBox = anchorKey.currentContext?.findRenderObject() as RenderBox;var offset = renderBox.globalT

#flutter#android
flutter 实心三角形

代码class TrianglePainter extends CustomPainter {final Color strokeColor;final PaintingStyle paintingStyle;final double strokeWidth;TrianglePainter({this.strokeColor = Colors.black,this.strokeWidth = 3,

#flutter#android#前端
    共 12 条
  • 1
  • 2
  • 请选择