Created
April 4, 2018 19:38
-
-
Save jaouadballat/7a4db711e12a435decc106f70ddf473f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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