1 Star 1 Fork 0

木白 / mini-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 709 Bytes
一键复制 编辑 原始数据 按行查看 历史
木白 提交于 2024-01-05 02:29 . update README.md.

迷你版vue

实现功能如下

  1. v-model
  2. {{}} 花括号内数据解析
  3. @click或v-on:click 解析事件方法 可传递参数
  4. v-html 功能开发
  5. v-if v-show 功能开发
  6. v-for功能开发
  7. watch 监听功能开发

vue 双向数据绑定 以及模板显示

  <div id="app">
    <input v-model="current"/>
    <button id="btn">按钮++</button>
    123
    {{ current }}
    <div v-text="text"></div>
    <div v-html="html"></div>
    <div v-if="remove">需要被移除的元素</div>
    <div v-show="show">需要被隐藏的元素</div>
    顶部
    <div v-for="itme in arr">
      <div>{{item}}</div>
    </div>
    底部
  </div>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyong1997/mini-vue.git
git@gitee.com:wangyong1997/mini-vue.git
wangyong1997
mini-vue
mini-vue
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891