1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| const app = Vue.createApp({
| data() {
| return {
| currentUserInput: '',
| message: 'Vue is great!',
| };
| },
| methods: {
| saveInput(event) {
| this.currentUserInput = event.target.value;
| },
| setText() {
| this.message = this.currentUserInput;
| },
| },
| });
|
| app.mount('#app');
|
| const app2 = Vue.createApp({
| data() {
| return {
| favoriteMeal:'pizza',
| };
| },
| computed: {},
| watch: {},
| methods: {},
| });
|
| app2.mount("#app2");
|
|