You can use this template for the starting point to develop Vue component for your application
<template> <section> <div class="columns"> <div class="column is-12"> </div> </div> </section> </template> <script> import Properties from '../mixin/Prop.js' import Spinner from 'vue-simple-spinner' export default { name: "card", data() { return { msg: '', } }, components: { vue_simple_spinner: Spinner }, computed: { deals() { return this.entity } }, mounted() { }, methods: { test: function () { }, } } </script> <style scoped> </style>