Start New Page
<template>
<div>
</div>
</template>
<script>
import Vue from "vue";
export default {
// ===Component name
name: "blank",
// ===Components used by this component
components: {},
// ===Code to be executed when Component is mounted
mounted() {},
// ===Computed properties for the component
computed: {},
// ===Component data
data() {
return {
}
},
// ===Component methods
methods: {
}
}
</script>
<!-- styles -->
<!-- adding scoped attribute will only apply the css to this component only -->
<style scoped></style>Last updated