阅读背景:

vue数据渲染、条件判断及列表循环

来源:互联网 

 

1.数据渲染  {{msg}}

<template>
  <div id="app">
    {{msg}}
  </div>
</template>

<script>
export default {
  name: 'app',
  data () {
    return {
      msg: 'Hello World'
    }
  }
}
</script>

<style>

</style>
<template>
  <div i



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: