美文网首页uni-app
uni-app(全局组件引用)

uni-app(全局组件引用)

作者: 遥啊遥啊遥啊 | 来源:发表于2019-02-26 10:30 被阅读327次

1 components文件下的vue文件

<template name="page-head">

 <view class="uni-page-head">

  <view class="uni-page-head-title">{{title}}</view>

 </view>

</template>

<script>

 export default {

  name: "page-head",

  props: {

   title: {

    type: String,

    default: ""

   }

  }

 }

</script>

2 main.js

import pageHead from './components/page-head.vue'

Vue.component('page-head',pageHead)

3 需要引用的文件下

<page-head :title="title"></page-head>

相关文章

网友评论

    本文标题:uni-app(全局组件引用)

    本文链接:https://www.haomeiwen.com/subject/dhnoyqtx.html