摘要: 页签规则 页签规则定义了路由打开页签的方式。 通过配置路由的 meta.key 属性,您可以定制路由页签规则 默认规则 默认情况下,同一路由打开同一个页签 内置规则 path 规则:route => route.path 说明:相同 route.params 的路由,route.path 一致,共用 阅读全文
posted @ 2021-12-02 15:14 龙丶谈笑风声 阅读(619) 评论(0) 推荐(0) 编辑
摘要: 原文官方地址:https://bhuh12.github.io/vue-router-tab/zh/guide/essentials/operate.html 页签操作 打开/切换页签 RouterTab 通过响应路由变化来新增或切换页签,您可以使用以下两种方式。 1. Vue Router 原生方 阅读全文
posted @ 2021-12-02 15:09 龙丶谈笑风声 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 原文官方地址:https://bhuh12.github.io/vue-router-tab/zh/guide/ 为了防止网站打不开,在这里记录一下使用方法。 安装:yarn add vue-router-tab or npm i vue-router-tab -S CDN: <!-- 引入样式 - 阅读全文
posted @ 2021-12-02 15:01 龙丶谈笑风声 阅读(253) 评论(0) 推荐(0) 编辑
摘要: public class BlowfishECB { /** maximum possible key length */ public readonly static int MAXKEYLENGTH = 56; /** block size of this cipher (in bytes) * 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(52) 评论(0) 推荐(0) 编辑
摘要: public class BlowfishCBC : BlowfishECB { // here we hold the CBC IV long m_lCBCIV; public BlowfishCBC() { } /** * get the current CBC IV (for cipher r 阅读全文
posted @ 2021-10-27 11:13 龙丶谈笑风声 阅读(98) 评论(0) 推荐(0) 编辑
摘要: public class Blowfish { private BlowfishCBC m_bfish; private static Random m_rndGen = new Random(); private byte[] SHA1keys(string key) { byte[] keyAr 阅读全文
posted @ 2021-10-27 11:12 龙丶谈笑风声 阅读(208) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// XML操作类 /// </summary> public class XmlHelper { #region 变量 protected string strXmlFile; protected XmlDocument objXmlDoc = new XmlDocu 阅读全文
posted @ 2021-10-22 10:30 龙丶谈笑风声 阅读(45) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 这个类提供了一些实用的方法来转换XML和对象。 /// </summary> public sealed class XmlConvertor { private XmlConvertor() { } /// <summary> /// 将XML字符串转换到指定的 阅读全文
posted @ 2021-10-22 10:29 龙丶谈笑风声 阅读(270) 评论(0) 推荐(0) 编辑
摘要: public class WordCombineUtil { /// <summary> /// com对象常用的参数 /// </summary> public static object Miss_Object = System.Reflection.Missing.Value; /// <su 阅读全文
posted @ 2021-10-22 10:28 龙丶谈笑风声 阅读(73) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 常用的文件操作辅助类FileUtil /// </summary> public class FileUtil { #region Stream、byte[] 和 文件之间的转换 /// <summary> /// 将流读取到缓冲区中 /// </summary> 阅读全文
posted @ 2021-10-22 09:34 龙丶谈笑风声 阅读(74) 评论(0) 推荐(0) 编辑