Start of project
This commit is contained in:
26
src/page/App.vue
Normal file
26
src/page/App.vue
Normal 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>
|
||||
Reference in New Issue
Block a user