22 lines
365 B
Vue
22 lines
365 B
Vue
|
<template lang="html">
|
||
|
<div ref="game"></div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'Game',
|
||
|
mounted() {
|
||
|
this.$nextTick(function() {
|
||
|
// framework
|
||
|
require('craftyjs/dist/crafty')
|
||
|
|
||
|
// initialize on ref="game"
|
||
|
window.Crafty.init(this.$refs.game)
|
||
|
|
||
|
// load fftcg
|
||
|
require('@/crafty/Game.coffee')
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
</script>
|