随笔分类 -  vue

记录vue知识、问题
摘要:import {ref,createApp } from 'vue' const app = createApp({ /* 根组件选项 */ data() { return { count: 0 }; }, computed: { doubleCount() { return this.count 阅读全文
posted @ 2025-04-03 00:14 心意12 阅读(98) 评论(0) 推荐(0)
摘要:文章内容是对自己学习和理解的记录,若有问题,望不吝赐教! 一、对linux的理解: linux属于操作系统,跟windows操作系统类比。 linux和shell文档:https://www.runoob.com/linux/linux-filesystem.html 二、windows上,运行sh 阅读全文
posted @ 2021-11-19 15:44 心意12 阅读(48) 评论(0) 推荐(0)
摘要:vue中做AES加密 import CryptoJS from "crypto-js"; //秘钥 const CRYPTOJSKEY= "abcdefgabcdefg12"; // 加密 encrypt(plaintText) { var plaintText = plaintText; var 阅读全文
posted @ 2021-07-12 13:33 心意12 阅读(889) 评论(0) 推荐(0)