21 lines
		
	
	
		
			526 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			526 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const app = Vue.createApp({
 | 
						|
  data: () => ({
 | 
						|
    myName: "Marc",
 | 
						|
    myAge: 12,
 | 
						|
    anImageUrl:
 | 
						|
      "https://images.unsplash.com/photo-1444464666168-49d633b86797?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2338&q=80",
 | 
						|
    myInput:
 | 
						|
      "Deserunt cupidatat dolor ea ex excepteur ad Lorem culpa pariatur dolore.",
 | 
						|
  }),
 | 
						|
  methods: {
 | 
						|
    agePlusFive() {
 | 
						|
      return this.myAge + 5;
 | 
						|
    },
 | 
						|
    randomNumber() {
 | 
						|
      return Math.random();
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 | 
						|
 | 
						|
app.mount("#assignment");
 |