mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 15:04:58 +00:00
fix
This commit is contained in:
parent
8cba75d0ff
commit
b99dd9fc12
4
app.hta
4
app.hta
|
@ -59,7 +59,9 @@
|
|||
<link type="text/css" rel="stylesheet" href="app/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<div id="app">
|
||||
<welsonjs-view></welsonjs-view>
|
||||
</div>
|
||||
<script src="app.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script type="text/javascript">//<!--<![CDATA[
|
||||
init_window("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
var FILE = require("lib/file");
|
||||
|
||||
Vue.component("welsonjs-view", {
|
||||
template: "<p>hello world</p>"
|
||||
});
|
||||
|
||||
new Vue({el: "#app"});
|
||||
|
||||
/*
|
||||
|
||||
$(document).ready(function() {
|
||||
$(".show-logged").css("display", "none");
|
||||
|
||||
|
@ -73,3 +81,4 @@ $(document).ready(function() {
|
|||
console.log("로그아웃 되었습니다.");
|
||||
});
|
||||
});
|
||||
*/
|
|
@ -71,7 +71,7 @@ exports.enableMovableWindow = function() {
|
|||
////////////////////////////////////////////////////////////////////////
|
||||
exports.main = function(args) {
|
||||
// make will display contents
|
||||
OldBrowser.setContent(FILE.readFile("app\\index.html", "utf-8"));
|
||||
//OldBrowser.setContent(FILE.readFile("app\\index.html", "utf-8"));
|
||||
OldBrowser.addStylesheet("app/assets/css/jquery-ui-1.21.1.min.css");
|
||||
OldBrowser.addStylesheet("app/assets/css/jquery.toast-1.3.2.min.css");
|
||||
OldBrowser.addStylesheet("app/assets/css/style.css");
|
||||
|
|
Loading…
Reference in New Issue
Block a user