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
32
33
34
35
36
| const app = Vue.createApp({
| data() {
| return {
| currentUserInput: "",
| message: "Vue is great!",
| };
| },
| methods: {
| saveInput(event) {
| this.currentUserInput = event.target.value;
| },
| setText() {
| // this.message = this.currentUserInput;
| this.message = this.$refs.userText.value;
| // console.dir(this.$refs.userText)
| },
| },
| });
|
| app.mount("#app");
|
| const app2 = Vue.createApp({
| data() {
| return {
| favoriteMeal: "pizza!!",
| };
| },
| computed: {},
| watch: {},
| methods: {},
| template: `
| <p>{{ favoriteMeal }}</p>
| `,
| });
|
| app2.mount("#app2");
|
|