Lazy loaded image
技术分享
框架设计的重要组成
00 min
2023-8-3
2024-11-25
type
status
date
slug
summary
tags
category
icon
password

描述面页UI

VueJS 提供了两种描述 UI 的方式:
  • template 模版:与 HTML 标签一致的 DOM 元素、属性、层级描述,提供 v-xxx 指令
  • h 函数:一个辅助创建 VDOM 的工具函数,返回描述 VDOM 的 js 对象

渲染器

作用:将虚拟 DOM 转为真实 DOM

组件

本质:一组虚拟 DOM 的封装

编译器

VueJS 通过编译器将 template 模版字符串编译为 render 渲染函数
上一篇
响应系统的实现
下一篇
框架设计的核心要素