joken-前端工程师

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: :: 管理 ::

2024年12月2日

摘要: import './assets/main.css'; import './assets/tailwind.css'; import './components/myts'; import { createApp } from 'vue'; import { createPinia } from ' 阅读全文
posted @ 2024-12-02 21:28 joken1310 阅读(5) 评论(0) 推荐(0) 编辑

摘要: // 1. 原型链继承 function Animal(name) { this.name = name; this.colors = ['black', 'white']; } Animal.prototype.getName = function () { return this.name; } 阅读全文
posted @ 2024-12-02 21:26 joken1310 阅读(5) 评论(0) 推荐(0) 编辑

摘要: enum既可以作为值使用,也可以作为类型使用。 枚举的打印结果是一个对象 <template> <div class='box'> <div class="enum-demo"> <h3>用户状态: {{ userStatusText }}</h3> <button @click="toggleUs 阅读全文
posted @ 2024-12-02 21:17 joken1310 阅读(4) 评论(0) 推荐(0) 编辑

摘要: <template> <div class='box'> <button @click="addItem">添加项目</button> <button @click="removeItem">删除项目</button> <TransitionGroup name="list" tag="ul" cl 阅读全文
posted @ 2024-12-02 21:12 joken1310 阅读(1) 评论(0) 推荐(0) 编辑