Create or Edit Vue.js Components - phcreery/Family_Web_Vue GitHub Wiki
Create a Vue component. They are stored at at
/client/src/components
in /client/router/index.js
import component.
then add router item to routes:
{
path: '/path',
name: 'name',
component: ComponentName
},
import new component into destination component in the <script>
import NewComponent from '@/src/components/NewComponent'
- add it to
components: {}
data underexport default {
- add it to
<template>
as<NewComponent />