File size: 581 Bytes
ccd75ba
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
document.once('DOMContentLoaded', () => {
 // Declare a new Alpine component and its data
 Alpine.data('cookieRecipe', {
    ingredients: ['flour', 'butter', 'sugar', 'eggs', 'vanilla'],
    methodology: ['Preheat oven to 350°F.', 'Mix dry ingredients in a bowl.', 'Add water and mix until dough forms.', 'Roll out dough on a floured surface.', 'Cut into desired shapes.', 'Bake for 10-15 minutes.'],
    instructionimages: ['path/to/image1', 'path/to/image2', 'path/to/image3', 'path/to/image4', 'path/to/image5', 'path/to/image6'],
    progress: 0,
    completed: false,
 });
})