JSFiddle - React, Tailwind, and code Playground

by _SyLaR_

HTML

<script src="https://unpkg.com/vue/dist/vue.js"></script>

<div id="exercise">
   <!-- 1) Fill the <p> below with your Name and Age - using Interpolation -->
    <p v-once>VueJS is pretty cool - {{ name }} ({{ age }})</p>
    <!-- 2) Output your age, multiplied by 3 -->
    <p>{{ age * 3 }}</p>
    <!-- 3) Call a function to output a random float between 0 and 1 (Math.random()) -->
    <p>{{ showRandomNumber() }}</p>
    <!-- 4) Search any image on Google and output it here by binding the "src" attribute -->
    <div>
        <img style="width:100px;height:100px" v-bind:src="imageUrl">
    </div>
    <!-- 5) Pre-Populate this input with your name (set the "value" attribute) -->
    <div>
        <input type="text" v-bind:value="name">
    </div>
</div>

JavaScript

new Vue({
	el: '#exercise',
  data: {
  	name: 'Nikola',
    age: 32,
    imageUrl: 'https://picsum.photos/100/100/?random'
  },
  methods: {
  	multilyAge: function() {
    	this.age = this.age * 3;
      return this.age;
    },
    showRandomNumber: function() {
      var randomNumber = Math.random() * 100;
      return parseInt(randomNumber);
    }
  }
});