screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <body> <div id="app"> <h3>Vue Js Math.min() Method</h3> <p>Get the minimum value of Array in Vue Js </p> <button @click="getMinValue">click me</button> <p>{{minValue}}</p> </div> <script type="module"> import { createApp } from "vue"; createApp({ data() { return { array: [2, 5, 3, 1, 6, 9, 5], minValue: '' } }, methods: { getMinValue() { this.minValue = Math.min.apply(Math, this.array);; } } }).mount("#app"); </script> </body> </head> </html>