Created
August 4, 2019 15:57
-
-
Save firminochangani/e96c6a1da9dd1fee7aefcb6283081e19 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"> | |
<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