Skip to content

Commit

Permalink
Update Debug.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
smori1983 committed Dec 31, 2023
1 parent fb1475f commit 1e39d91
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/Debug.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
<template>
<pre class="json">{{ searchData }}</pre>
<div>
<p>The content of <code>@dynamic/vuepress-plugin-flexsearch/dictionary</code></p>
<pre class="json">{{ dictionaryData }}</pre>

<p>The content of <code>@dynamic/vuepress-plugin-flexsearch/data</code></p>
<pre class="json">{{ searchData }}</pre>
</div>
</template>

<script>
import data from '@dynamic/vuepress-plugin-flexsearch/data';
import dictionary from '@dynamic/vuepress-plugin-flexsearch/dictionary';
export default {
data () {
return {
searchData: data,
dictionaryData: dictionary,
};
},
};
Expand Down

0 comments on commit 1e39d91

Please sign in to comment.