Vue Cli 脚手架目录文件介绍
小试牛刀
//vetur高亮; vue+tab 快速生成
<template>
<div class="box">
我是个盒子<button @click="fn">按钮</button>
</div>
</template>
<script>
export default {
methods:{
fn(){
alert("Hello Vue")
}
}
}
</script>s
<style>
.box{
width:200px;
height:200px;
background-color: pink;
}
</style>
原文地址:https://blog.csdn.net/m0_73557953/article/details/143675008
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!