<script>
const App = Vue.createApp({}) // 建立 App 實例
const alertComponent = { // 定義警告框元件
data() {
return {
msg:"警告框提示", // 警告框內容
count:0 // 計數變數
}
},
methods:{
click(){
alert(this.msg + this.count++) // 彈出警告框,顯示內容和計數變數
}
},
template:'<div><button @click="click">按鈕</button></div>' // 元件的範本
}
App.component("my-alert",alertComponent) // 在 App 上掛載元件
App.mount("#Application") // 掛載 App
</script>
今天就到這邊啦~雖然斷賽了,但我還是會繼續完成30篇文章的!