本文主要是【Vue】——Vue实现的文章,如果有什么需要改进的地方还请大佬指出⛺️
作者简介:大家好,我是听风与他
☁️博客首页:CSDN主页听风与他
每日一句:狠狠沉淀,顶峰相见
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<script src="https://unpkg.com/vue@3/dist/vue.global.js">script>
head>
<body>
<div style="text-align: center;" id="Application">
<h1>{{count}}h1>
<button v-on:click="clickButton">单击button>
div>
<script>
// 定义一个vue组件,名为App
const App = {
// 定义组件中的数据
data(){
return{
//目前只用到count数据
count:0
}
},
//定义组件中的方法
methods:{
// 实现单击按钮的方法
clickButton(){
this.count = this.count + 1
}
}
}
// 将vue组件绑定到页面上id为Application的元素上
Vue.createApp(App).mount("#Application")
script>
body>
html>