mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-01-16 10:52:03 -06:00
make scenarios run in workspace
This commit is contained in:
parent
8ba43027eb
commit
894e65d99f
@ -7,7 +7,7 @@
|
|||||||
:active_category_name="active_category_name"
|
:active_category_name="active_category_name"
|
||||||
:active_topic="active_topic"/>
|
:active_topic="active_topic"/>
|
||||||
|
|
||||||
<v-app-bar app dark color="secondary" collapse-on-scroll dense >
|
<v-app-bar app dark color="secondary" collapse-on-scroll dense>
|
||||||
<v-app-bar-nav-icon @click.stop="toggleDrawer"/>
|
<v-app-bar-nav-icon @click.stop="toggleDrawer"/>
|
||||||
<v-toolbar-title>NoSQLBench Docs</v-toolbar-title>
|
<v-toolbar-title>NoSQLBench Docs</v-toolbar-title>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<v-main>
|
<v-main>
|
||||||
<v-container>
|
<v-container>
|
||||||
<v-row align-content="start" align="start" justify="start">
|
<v-row align-content="start" align="start" justify="start">
|
||||||
<div>{{testdata}}</div>
|
<div>{{ testdata }}</div>
|
||||||
|
|
||||||
<div class="Doc">
|
<div class="Doc">
|
||||||
<div class="doc-title">
|
<div class="doc-title">
|
||||||
@ -41,55 +41,55 @@
|
|||||||
</v-app>
|
</v-app>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import get_data from '~/mixins/get_data.js';
|
import get_data from '~/mixins/get_data.js';
|
||||||
import DocsMenu from '~/components/DocsMenu.vue'
|
import DocsMenu from '~/components/DocsMenu.vue'
|
||||||
import MarkdownVue from "~/components/MarkdownVue";
|
import MarkdownVue from "~/components/MarkdownVue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [get_data],
|
mixins: [get_data],
|
||||||
components: {
|
components: {
|
||||||
DocsMenu, MarkdownVue
|
DocsMenu, MarkdownVue
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
isDrawerOpen() {
|
isDrawerOpen() {
|
||||||
return this.$store.state.docs.isDrawerOpen;
|
return this.$store.state.docs.isDrawerOpen;
|
||||||
},
|
},
|
||||||
isDrawerOpen2() {
|
isDrawerOpen2() {
|
||||||
return this.$store.getters.drawerState;
|
return this.$store.getters.drawerState;
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
toggleDrawer() {
|
|
||||||
this.$store.commit('docs/toggleDrawerState');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data(context) {
|
|
||||||
console.log("data context.params:" + JSON.stringify(context.params));
|
|
||||||
console.log("data context.route:" + JSON.stringify(context.route));
|
|
||||||
console.log("data context.query:" + JSON.stringify(context.query));
|
|
||||||
|
|
||||||
return {
|
|
||||||
testdata: this.$store.state.docs.example,
|
|
||||||
categories_list: [],
|
|
||||||
markdown_body: '',
|
|
||||||
active_topic: null,
|
|
||||||
active_category: null,
|
|
||||||
options: function () {
|
|
||||||
return {
|
|
||||||
markdownIt: {
|
|
||||||
linkify: true
|
|
||||||
},
|
|
||||||
linkAttributes: {
|
|
||||||
attrs: {
|
|
||||||
target: '_blank',
|
|
||||||
rel: 'noopener'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
toggleDrawer() {
|
||||||
|
this.$store.commit('docs/toggleDrawerState');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data(context) {
|
||||||
|
console.log("data context.params:" + JSON.stringify(context.params));
|
||||||
|
console.log("data context.route:" + JSON.stringify(context.route));
|
||||||
|
console.log("data context.query:" + JSON.stringify(context.query));
|
||||||
|
|
||||||
|
return {
|
||||||
|
testdata: this.$store.state.docs.example,
|
||||||
|
categories_list: [],
|
||||||
|
markdown_body: '',
|
||||||
|
active_topic: null,
|
||||||
|
active_category: null,
|
||||||
|
options: function () {
|
||||||
|
return {
|
||||||
|
markdownIt: {
|
||||||
|
linkify: true
|
||||||
|
},
|
||||||
|
linkAttributes: {
|
||||||
|
attrs: {
|
||||||
|
target: '_blank',
|
||||||
|
rel: 'noopener'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
.container {
|
.container {
|
||||||
|
Loading…
Reference in New Issue
Block a user