projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Move some comments, and remove some of them
[vchess.git]
/
client
/
src
/
main.js
1
import
Vue
from
"vue"
;
2
import
App
from
"./App.vue"
;
3
import
router
from
"./router"
;
4
import
{
store
}
from
"./store"
;
5
6
Vue
.
config
.
productionTip
=
false
;
7
8
new
Vue
({
9
router
,
10
render
:
function
(
h
) {
11
return
h
(
App
);
12
},
13
created
:
function
() {
14
window
.
doClick
= (
elemId
) => {
document
.
getElementById
(
elemId
).
click
() };
15
store
.
initialize
();
16
},
17
}).$
mount
(
"#app"
);