vue basic 01

What is Vue?

  • Vue (pronounced /vjuː/, similar to view ) is a progressive framework for building user interfaces
  • Vue's core library only focuses on the view layer, which is not only easy to use, but also easy to integrate with third-party libraries or existing projects

Use Vue to render helloworld on the page

Insert picture description here

instruction

  • The essence is custom attributes
  • The designations in Vue all start with v-

v-cloak

  • Prevent flickering when the page loads

     <style type="text/css

Guess you like

Origin blog.csdn.net/qq_40199232/article/details/108620140