Skip to content

Instantly share code, notes, and snippets.

@flowck
Created August 4, 2019 15:57
Show Gist options
  • Save flowck/e96c6a1da9dd1fee7aefcb6283081e19 to your computer and use it in GitHub Desktop.
Save flowck/e96c6a1da9dd1fee7aefcb6283081e19 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<h1>Plot with x and y axes</h1>
<plot :height="200"/>
</div>
</template>
<script>
import plot from "@/components/plotWithXandYaxis.vue";
export default {
name: "App",
data() {
return {};
},
components: {
plot
}
};
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment