vue : 项目起手式 - router组件通用模板

每次新建文件都要找来找去,麻烦,干脆贴到这里好了。

<template>
    <div id="page">
        
    </div>
</template>

<script>

export default {
    name: 'page',
    data(){
        return {
            
        }
    }
}
</script>

<style scoped>


#page{
    
}
</style>

以上。

猜你喜欢

转载自www.cnblogs.com/foxcharon/p/10584880.html