
前端
包达叔
这个作者很懒,什么都没留下…
展开
-
Vue2和Vue3入门的第一个页面
Vue2+ElementUI 模板<!doctype html><html lang="zh"><head> <meta charset="utf-8"> <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> <style> .el-header, .el-原创 2022-01-08 16:27:07 · 618 阅读 · 0 评论 -
VScode用户设置Visual Studio Code
推荐的Visual Studio Code用户设置推荐的VScode用户设置VUE3+TypeScript原创 2019-04-09 10:11:20 · 4849 阅读 · 1 评论 -
Vue3.0与Vue2.0中keep-alive的用法区别
vue2.0 <keep-alive> <router-view /> </keep-alive>vue3.0 <suspense> <router-view v-slot="{ Component }"> <keep-alive> <component :is="Component" /> </keep-alive原创 2021-08-19 21:05:18 · 381 阅读 · 0 评论