feat:update assets and set ip for input
This commit is contained in:
6
doric-demo/.vscode/tasks.json
vendored
6
doric-demo/.vscode/tasks.json
vendored
@@ -6,21 +6,21 @@
|
||||
{
|
||||
"label": "Doric Build",
|
||||
"type": "shell",
|
||||
"command": "doric build",
|
||||
"command": "npm run build",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Doric Clean",
|
||||
"type": "shell",
|
||||
"command": "doric clean",
|
||||
"command": "npm run clean",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Doric Dev",
|
||||
"type": "shell",
|
||||
"command": "doric dev",
|
||||
"command": "npm run dev",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
}
|
||||
|
@@ -59,9 +59,9 @@ class CounterVM extends ViewModel<CountModel, CounterView> {
|
||||
}
|
||||
onBind(s: CountModel, vh: CounterView) {
|
||||
vh.number.text = `${s.count}`;
|
||||
log("onBind");
|
||||
logw("onBind");
|
||||
loge("onBind");
|
||||
log(`Current count is ${s.count}`);
|
||||
logw(`Current count is ${s.count}`);
|
||||
loge(`Current count is ${s.count}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user