[FORDJ] Add Playground App
This commit is contained in:
parent
85c796b51d
commit
02a0849bc6
4 changed files with 44 additions and 0 deletions
|
|
@ -4,4 +4,5 @@ User : {{.UserName}}
|
||||||
{{else}}
|
{{else}}
|
||||||
User : None
|
User : None
|
||||||
{{end}}
|
{{end}}
|
||||||
|
<div id="playground"></div>
|
||||||
{{template "base/footer" .}}
|
{{template "base/footer" .}}
|
||||||
|
|
|
||||||
27
web_src/js/components/Playground.vue
Normal file
27
web_src/js/components/Playground.vue
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{ message }}</h1>
|
||||||
|
<div>
|
||||||
|
<p v-if="serverData">{{ serverData.data }}</p>
|
||||||
|
<button @click="fetchData">Fetch</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
message: 'Test',
|
||||||
|
serverData : '...'
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods : {
|
||||||
|
async fetchData() {
|
||||||
|
const response = await fetch("http://localhost:3333/data/");
|
||||||
|
this.serverData = await response.json();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style></style>
|
||||||
12
web_src/js/features/playground.js
Normal file
12
web_src/js/features/playground.js
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
import {createApp} from 'vue'
|
||||||
|
import Playground from '../components/Playground.vue'
|
||||||
|
|
||||||
|
|
||||||
|
export function initPlayground() {
|
||||||
|
const el = document.getElementById('playground');
|
||||||
|
if (!el) return;
|
||||||
|
|
||||||
|
const View = createApp(Playground);
|
||||||
|
View.mount(el)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -88,6 +88,8 @@ import {initDirAuto} from './modules/dirauto.js';
|
||||||
import {initRepositorySearch} from './features/repo-search.js';
|
import {initRepositorySearch} from './features/repo-search.js';
|
||||||
import {initColorPickers} from './features/colorpicker.js';
|
import {initColorPickers} from './features/colorpicker.js';
|
||||||
|
|
||||||
|
import {initPlayground} from './features/playground.js';
|
||||||
|
|
||||||
// Init Gitea's Fomantic settings
|
// Init Gitea's Fomantic settings
|
||||||
initGiteaFomantic();
|
initGiteaFomantic();
|
||||||
initDirAuto();
|
initDirAuto();
|
||||||
|
|
@ -190,4 +192,6 @@ onDomReady(() => {
|
||||||
initPdfViewer();
|
initPdfViewer();
|
||||||
initScopedAccessTokenCategories();
|
initScopedAccessTokenCategories();
|
||||||
initColorPickers();
|
initColorPickers();
|
||||||
|
|
||||||
|
initPlayground();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue