<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <div id="app">
        <select name="abc" id="" v-model="fruit" multiple>
         <option value="苹果">苹果</option>
         <option value="苹果">苹果</option>
         <option value="香蕉">香蕉</option>
         <option value="苹果">苹果</option>
     </select>
        <h2>你选择得水果:{{fruit}}</h2>
    </div>
    <script src="./js/vue.js">
    </script>
    <script>
        const app = new Vue({
            el: '#app',
            data: {
                message: 'geyao',
                isAgree: false,
                fruit: ''
            }
        })
    </script>
</body>

</html>

运行结果