5. Vue의 어셈블리(템플릿)

1697 단어



import common from '../../kits/common.js';
import { Toast } from 'mint-ui';

// 1.0  
import comment from '../subcom/comment.vue';
    export default{
        data(){
            return {
                info:{},
                newsid:0
            }
        },
        methods:{
            getinfo(){
                // 1.0  url newsid
                var newsid  = this.$route.params.newsid;

                this.$http.get(common.apiDomain+'/api/getnew/'+newsid)
                .then(res=>{
                    if(res.body.status !==0){
                        Toast(res.body.message);
                        return;
                    }

                    this.info = res.body.message[0];
                });
            }
        },
        created(){
            //  newsid
            this.newsid = this.$route.params.newsid;
            this.getinfo();
        },
            //  comment  
        components:{
            comment // comment:comment
        }
    }




좋은 웹페이지 즐겨찾기