10 2022 档案

摘要:最近在学习pyecharts时,通过pip install pyecharts安装包以后,发现在pyCharm中引用pyecharts竟然无效果 检查文档后发现,pyecharts需要python3及pip3安装 https://pyecharts.org/#/zh-cn/quickstart ht 阅读全文
posted @ 2022-10-26 22:09 知兮 阅读(177) 评论(0) 推荐(0) 编辑
摘要:这个小例子是学习vue3与pinia状态管理工具时写的一个简单的购物车功能, 它实现了从模拟接口(node.js的json-server提供)读取商品数据,到添加商品到购物车和购物车中删除商品等购物车主要功能 准备工作,执行 npm i pinia -G 安装pinia 执行 npm json-se 阅读全文
posted @ 2022-10-14 15:48 知兮 阅读(1176) 评论(0) 推荐(0) 编辑
摘要:01-gitting-started vue3基础 <template> <div> {{ count }} <button @click="handelClick">add</button> </div> </template> <script setup> import { ref } from 阅读全文
posted @ 2022-10-14 15:35 知兮 阅读(48) 评论(0) 推荐(0) 编辑