This file contains 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
<style> | |
.ui-datepicker .md-icon { | |
flex: 0 0 auto; | |
margin-right: 8px; | |
width: 18px; | |
height: 18px; | |
} | |
</style> | |
<style lang="sass" scoped> |
This file contains 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
<style lang="sass" scoped> | |
.app { | |
position : relative; | |
width : 100vw; | |
height : 100vh; | |
margin : 0 !important; | |
} | |
.appbar { | |
position : absolute; |
This file contains 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
<style lang="sass" scoped> | |
.app { | |
position : relative; | |
width : 100vw; | |
height : 100vh; | |
margin : 0 !important; | |
} | |
.appbar { | |
position : absolute; |
This file contains 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
<style lang="sass" scoped> | |
@import '../sass/common'; | |
@import '../sass/animatecss'; | |
.ui-modal { | |
display: flex; | |
justify-content: center; | |
position: fixed; | |
top: 0; |
This file contains 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
<style lang="sass"> | |
@import '../sass/common'; | |
$ct-series-colors: ( | |
colour('x'), | |
colour('y'), | |
colour('a'), | |
colour('b'), | |
colour-darken('x', 10), | |
colour-darken('y', 10), |
This file contains 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
import Vuex from 'vuex' | |
import Vue from 'vue' | |
import _ from 'lodash' | |
import store from 'store' | |
import auth from './auth' | |
import config from '../config' | |
Vue.use(Vuex) | |
export default new Vuex.Store({ |
This file contains 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
! function(t) { | |
function e(r) { | |
if (s[r]) return s[r].exports; | |
var i = s[r] = { | |
exports: {}, | |
id: r, | |
loaded: !1 | |
}; | |
return t[r].call(i.exports, i, i.exports, e), i.loaded = !0, i.exports | |
} |
This file contains 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
{ | |
"name": "vue-modal", | |
"version": "0.0.1", | |
"description": "Simple modal component", | |
"main": "dist/vue-modal.js", | |
"scripts": { | |
"example": "webpack-dev-server --inline --hot --config build/webpack.example.js --content-base example/", | |
"dist": "webpack -p --config build/webpack.dist.js" | |
}, | |
"keywords": [ |
This file contains 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 class="chatter"> | |
<div class="controls"> | |
<input type="text" placeholder="Your message..." v-model="message" @keyup.enter="userMessage"/> | |
<button @click="userMessage">Send</button> | |
</div> | |
<div class="messages"> | |
<div class="message" v-for="message in messages"> | |
<p>{{ timestamp() }} <strong>{{ message.sender }}</strong>: {{ message.text }}</p> | |
</div> |