I hereby claim:
- I am apertureless on github.
- I am apertureless (https://keybase.io/apertureless) on keybase.
- I have a public key ASCK-sG7mtSCFr9gmXBPmHTgzE9C0H42zODzX_AN-T_vTQo
To claim this, I am signing this object:
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
| import {Line} from 'vue-chartjs' | |
| import reactiveProp from './mixin.js' | |
| export default Line.extend({ | |
| mixins: [reactiveProp], | |
| props: ['chartData', 'options'], | |
| mounted () { | |
| this.renderChart(this.chartData, this.options) | |
| } | |
| }) |
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="Chart__list"> | |
| <div class="Chart"> | |
| <h2>Linechart</h2> | |
| <line-example></line-example> | |
| </div> | |
| </div> | |
| </div> |
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
| .Chart { | |
| background: #212733; | |
| border-radius: 15px; | |
| box-shadow: 0px 2px 15px rgba(25, 25, 25, 0.27); | |
| margin: 25px 0; | |
| } | |
| .Chart h2 { | |
| margin-top: 0; | |
| padding: 15px 0; |
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
| import {Line} from 'vue-chartjs' | |
| export default { | |
| extends: Line, | |
| mounted () { | |
| this.renderChart({ | |
| labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], | |
| datasets: [ | |
| { | |
| label: 'Data One', |
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="Chart__list"> | |
| <div class="Chart"> | |
| <h2>Linechart</h2> | |
| <line-example></line-example> | |
| </div> | |
| </div> | |
| </div> |
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
| import {Line} from 'vue-chartjs' | |
| export default Line.extend({ | |
| data () { | |
| return { | |
| gradient: null, | |
| gradient2: null | |
| } | |
| }, | |
| mounted () { |
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
| <script> | |
| import { Line } from 'vue-chartjs' | |
| export default { | |
| extends: Line, | |
| props: { | |
| chartData: { | |
| type: Array | Object, | |
| required: false | |
| }, |
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 class="content"> | |
| <div class="container"> | |
| <div class="Search__container"> | |
| <input | |
| class="Search__input" | |
| @keyup.enter="requestData" | |
| placeholder="npm package name" | |
| type="search" name="search" | |
| v-model="package" |