mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
creating the controller/view/api base
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import Profil from "../../components/Cis/Profil/Profil.js";
|
||||
|
||||
import fhcapifactory from "../api/fhcapifactory.js";
|
||||
|
||||
Vue.$fhcapi = fhcapifactory;
|
||||
|
||||
const app = Vue.createApp({
|
||||
components: {
|
||||
Profil,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
stunden: [],
|
||||
events: null
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
testsearch: function() {
|
||||
return Vue.$fhcapi.UserData.getUser();
|
||||
}
|
||||
},
|
||||
|
||||
});
|
||||
app.mount('#content');
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
function getUser(){
|
||||
echo "test";
|
||||
}
|
||||
|
||||
class Dummy extends Auth_Controller
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,5 +1,7 @@
|
||||
import Search from "./search.js";
|
||||
import UserData from "./userdata.js";
|
||||
|
||||
export default {
|
||||
"Search": Search
|
||||
"Search": Search,
|
||||
"UserData": UserData
|
||||
};
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
export default {
|
||||
|
||||
getUser: function() {
|
||||
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root
|
||||
+ 'Cis/Profil/getUser';
|
||||
return axios.get(url);
|
||||
},
|
||||
getUserDumy: function(){
|
||||
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root
|
||||
+ 'public/js/apps/api/dummyapi.php/getUser';
|
||||
return axios.get(url);
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,27 @@
|
||||
|
||||
|
||||
export default {
|
||||
|
||||
data: function() {
|
||||
return {
|
||||
person: null,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
testsearch: function() {
|
||||
|
||||
}
|
||||
},
|
||||
created(){
|
||||
this.$parent.testsearch().then((res) => {
|
||||
this.person = res.data;
|
||||
});
|
||||
},
|
||||
|
||||
template: `
|
||||
<div>
|
||||
<h1>test</h1>
|
||||
<code>{{JSON.stringify(person)}}</code>
|
||||
</div>
|
||||
`,
|
||||
};
|
||||
Reference in New Issue
Block a user