- Implement dynamic styles and event handling in Vue2 with a card component. - Create lifecycle methods exercise to simulate async data loading and instance destruction. - Develop a component communication exercise with props, events, and slots. - Build a comprehensive course management dashboard with filtering, statistics, and component interactions.
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
new Vue({
|
|
el: "#app",
|
|
data: {
|
|
title: "Vue2 基础入门",
|
|
lessonCount: 8,
|
|
learnerCount: 12,
|
|
},
|
|
methods: {
|
|
increaseLearner() {
|
|
this.learnerCount += 1;
|
|
console.log("当前学习人数:", this.learnerCount);
|
|
},
|
|
},
|
|
});
|