vue组件三种书写方式

Posted dontes

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue组件三种书写方式相关的知识,希望对你有一定的参考价值。

来源: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组件三种书写方式的主要内容,如果未能解决你的问题,请参考以下文章

vue书写样式的两种方式

Vue_(组件通讯)使用solt分发内容

vue传参的三种方式

Vue创建组件的三种方式

vue ts ,vue使用typescript,三种组件传值方式

Vue组件的三种调用方式