screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <h3>Vue Js Celsius convert into Fahrenheit</h3> <div id="app"> <input type="text" v-model="celsius"> <p>{{ celsius }}°C is equivalent to {{ fahrenheit }}°F</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { celsius: 0 }; }, computed: { fahrenheit() { return (this.celsius * 9 / 5) + 32; } } }); </script> </body> </html>