vuejs

Create New Component Scaffold (.vue)

<template>

</template>

<script>

export default {
  name: 'New Component'
}

<script>

<style scoped>

</style>

Blank scaffold for new .vue component with scoped css

Was this helpful?