Skip to content

Instantly share code, notes, and snippets.

@jaouadballat
Created April 4, 2018 19:38
Show Gist options
  • Save jaouadballat/7a4db711e12a435decc106f70ddf473f to your computer and use it in GitHub Desktop.
Save jaouadballat/7a4db711e12a435decc106f70ddf473f to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3">
<Chat />
</div>
</div>
</div>
</div>
</template>
<script>
import Chat from './components/Chat.vue'
export default {
name: 'app',
components: {
Chat
}
}
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment