Code

<!DOCTYPE html>
<html>
<head>
    <script src="http://192.168.1.22:8098"></script>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body style="font-size: 30px" id="app">
<ul id="app-1">
  <li v-for="item in items">
    {{ item }}
  </li>
</ul>
<script>
new Vue({
    el:'#app-1',
    data:{
        items:[
            'PHP',
            'Laravel',
            'VueJS'
        ]
    }
});
</script>
</body>
</html>