随笔分类 -  书籍目录

摘要:<template> <div> <h1>我是组件demo</h1> <div> <!-- 在封装组件时,为预留的<slot>提供属性对应的值,这种用法,叫做作用域插槽 --> <slot name="head" :head="head"></slot> <slot name="content" c 阅读全文
posted @ 2025-04-17 17:59 爱晒太阳的懒猫。。 阅读(26) 评论(0) 推荐(0)
摘要:<button @click="name = 'one'"></button> <button @click="name = 'two'"></button> <component :is="name"></component> import one from "component1" import 阅读全文
posted @ 2025-04-17 17:59 爱晒太阳的懒猫。。 阅读(18) 评论(0) 推荐(0)
摘要:npm安装目录中,同样有一个package.json文件,存储了所有已安装软件包的名称和版本等信息 全局卸载,是卸载单独的全局位置的还是全局位置和局部位置同时卸载 阅读全文
posted @ 2024-06-03 09:09 爱晒太阳的懒猫。。 阅读(26) 评论(0) 推荐(0)
摘要:1. <style type="text/css"> @import url("001.css"); </style> 2.行内大于内部,引用 行内<div style="border....">同级别越靠近,权重越大 阅读全文
posted @ 2024-05-15 11:51 爱晒太阳的懒猫。。 阅读(22) 评论(0) 推荐(0)