Start of project

This commit is contained in:
benjaminramey
2019-11-09 21:30:27 -06:00
commit 708eed82e5
15 changed files with 9443 additions and 0 deletions

26
src/page/App.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<div class="fluid-container p-2">
<h1>Pinboard Groupings</h1>
</div>
</template>
<script>
export default {
data () {
return {
apiKey: "bob",
groupings: []
}
},
created() {
chrome.storage.sync.get(['apiKey', 'groupings'], result => {
this.apiKey = result.apiKey;
this.groupings = result.groupings;
});
}
}
</script>
<style lang="scss" scoped>
</style>