VUE真实项目中常用的生命周期和参数
Posted binmengxue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE真实项目中常用的生命周期和参数相关的知识,希望对你有一定的参考价值。
<template> <div class="first-app"> {{msg}} <br/> {{msg1}} <Confin text=‘注册‘ @message="getMeaasge"></Confin> </div> </template> <script> import Confin from ‘@/components/sub/Confin‘; export default { name: ‘Fist‘, components: {Confin}, //注册组件,比如要插入另外一个写好的VUE文件买这个时候就需要添加 props:[], //接受父亲的参数 data () { return { msg: ‘Welcome to Your FistApp ddddd‘ } }, mounted(){ //dom挂在完成 相当于onload,方法的调用 //this.getMeaasge(); }, computed:{ //计算属性 msg1(){ return this.msg+‘1‘; } }, methods:{ //这里面添加所有的方法 getMeaasge(val){ alert(val) } } } </script> <style> .first-app{ color:#f00; font-size:40px; } </style>
以上是关于VUE真实项目中常用的生命周期和参数的主要内容,如果未能解决你的问题,请参考以下文章