通过TypeScript 简单实现 Vue 的 渲染系统(renderer),其包括h函数、mount函数、patch函数。Vue 的 响应式系统(reactive),reactive函数(可深度监听)、 包括对数据依赖收集(发布订阅模式)、Dep类,Vue的应用程序入口模块。最后,使用min-vue 实现了计数器案例。