Add some Vue related components. Prep for inclusion of passport and other tools.

This commit is contained in:
James Cole
2018-01-31 17:55:49 +01:00
parent d0e0054b00
commit e3d6f4f00f
11 changed files with 14561 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Example Component</div>
<div class="panel-body">
I'm an example component!
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
mounted() {
console.log('Component mounted.')
}
}
</script>