Basic usage vue

Vue is a progressive frame for constructing the user interface; single page application;

The core vue is to allow the use of simple template syntax to declaratively render the data into the DOM system;

The following is a structural component of vue:

<template>
  <div id="app">
    <!--<Vheader></Vheader>-->
    <router-view/>
  </div>
</template>

<script>
import Vheader from '@/components/Vheader'
export default {
  name: 'App',
  components:{
    Vheader
  }
}

</script>



<style>

</style>

  

Guess you like

Origin www.cnblogs.com/zenghui-python/p/12003281.html