Vue-- component-based development DEMO

<template>
    <div>
        <h2>{{messagea}}</h2>
        <button @click="btnClicka">按钮</button>
        <h2>{{namea}}</h2>
    </div>
</template>

<script>
    export default {
        name: "DEMO",
        data(){
            return {
                messagea: "hello Vue DEMO",
                namea: "STZG DEMO"
            };
        },
        methods:{
            btnClicka(){

            }
        }
    }
</script>

<style scoped>
    button{
        color: greenyellow;
    }
</style>

 

Released 1365 original articles · won praise 231 · views 310 000 +

Guess you like

Origin blog.csdn.net/weixin_43272781/article/details/104083356