ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Introduction(介绍)

2022-05-21 13:00:48  阅读:174  来源: 互联网

标签:Vue based Introduction JavaScript 介绍 state HTML template


What is Vue?

什么是Vue

Vue(pronounced/vju:/,like view) is a javascript framework for building user interfaces.It builds on top of standard HTML,CSS and JavaScript,and provides a declarative and component-based programming model that helps you efficiently develop user interfaces,be it simple or complex
vue是一个JavaScript框架用来搭建用户界面.它构建在标准的HTML,CSS和JavaScript之上,并提供了一个声明性和基于组件的编程模型可以帮助你高效的开发用户界面,无论是简单还是复杂的

here is a minimal example;
下面是一个简单的示例

import {createApp} from 'vue'
createApp({
  data(){
    return {
      count:0
    }
  }
}).mount('#pp')
<div>
  <button @click="count++">
    Count is :{{count}}
  </button>
</div>

The above example demonstrates the two core features of Vue:
上述例子演示了Vue的两个核心功能

  • Declarative Rendering:Vue extends standrad HTML with a template syntax that allow us to declaratively describe HTML output based on JavaScript state.
  • 声明性渲染:Vue通过template语法扩展了标准的HTML,允许我们基于JvavScript状态声明性的描述HTML输出
  • Reactivity:Vue automatically tracks JavaScript state changes and efficiently updates the DOM when changes happen
  • 双向绑定:Vue自动追踪JavaScript状态的改变,并在发生更改时高效地跟新DOM

you may already have questioins - don't worry.We will cover every little detail in the rest of the documentation.For now,please read along so you can have a high-level understanding of what Vue offers.
你可能已经有问题了-别担心.我们将在其余文档中介绍每一个小细。现在,请阅读全文,以便对Vue提供的
内容有一个高层次的了解。

标签:Vue,based,Introduction,JavaScript,介绍,state,HTML,template
来源: https://www.cnblogs.com/gzeal/p/16294887.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有