stash debugger
This commit is contained in:
parent
e8976a42ad
commit
d6b9bb60c3
@ -78,6 +78,7 @@ public class LocalServer extends NanoHTTPD {
|
||||
return "{}";
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
private static String getIpAddressString() {
|
||||
|
@ -33,7 +33,6 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
console.log(`ws://${window.location.host}`);
|
||||
import axios from "axios";
|
||||
export default {
|
||||
name: "Context",
|
||||
@ -46,7 +45,7 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
goBack() {
|
||||
this.$router.go(-1);
|
||||
this.$router.push({ path: "/" });
|
||||
},
|
||||
debug() {
|
||||
console.log("debug");
|
||||
@ -57,7 +56,6 @@ export default {
|
||||
axios.get(`/api/context?id=${this.$route.params.id}`).then(res => {
|
||||
this.source = res.data.source;
|
||||
this.script = res.data.script;
|
||||
console.log(this.script);
|
||||
});
|
||||
},
|
||||
updated: function() {
|
||||
@ -75,18 +73,22 @@ div {
|
||||
p span {
|
||||
color: #409eff;
|
||||
}
|
||||
|
||||
.context {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.container {
|
||||
margin-top: 30px;
|
||||
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.aside {
|
||||
text-align: left;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.script {
|
||||
text-align: left;
|
||||
font-size: 50%;
|
||||
|
@ -78,7 +78,7 @@ class CounterVM extends ViewModel<CountModel, CounterView> {
|
||||
})
|
||||
}
|
||||
}
|
||||
@Entry
|
||||
|
||||
class MyPage extends VMPanel<CountModel, CounterView>{
|
||||
|
||||
getVMClass() {
|
||||
@ -402,7 +402,7 @@ class SnakeVM extends ViewModel<SnakeModel, SnakeView>{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Entry
|
||||
class SnakePanel extends VMPanel<SnakeModel, SnakeView>{
|
||||
|
||||
getVMClass() {
|
||||
|
Reference in New Issue
Block a user