码迷,mamicode.com
首页 > 其他好文 > 详细

vue组件三种书写方式

时间:2017-07-11 19:12:20      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:enter   har   osx   one   text   nts   sed   pre   sse   

来源:http://blog.csdn.net/u012123026/article/details/72460470

第三种方式:

Hello.vue

<template>
  <div class="hello">
    <h1>{{ msg }}</h1>
  </div>
</template>

<script>
export default {
  name: ‘hello‘,
  data () {
    return {
      msg: ‘欢迎!‘
    }
  }
}
</script>

  app.vue

<!-- 展示模板 -->
<template>
  <div id="app">
    <img src="./assets/logo.png">
    <hello></hello>
  </div>
</template>

<script>
// 导入组件
import Hello from ‘./components/Hello‘

export default {
  name: ‘app‘,
  components: {
    Hello
  }
}
</script>
<!-- 样式代码 -->
<style>
#app {
  font-family: ‘Avenir‘, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

  

vue组件三种书写方式

标签:enter   har   osx   one   text   nts   sed   pre   sse   

原文地址:http://www.cnblogs.com/dontes/p/7151968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!