File size: 343 Bytes
ac5ecb6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import 'https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js';
import * as from './app.js';

const app = new App({
 el: '#app',
 data: {
    message: '',
 },
 methods: {
    handleInput: function(event) {
      this.message = event.target.value;
    },
 },
 created: function() {
    this.message = 'Initialize your message...';
 },
});