#概要
plunkerでvueやってみた。
phinaやってみた。
#サンプルコード
new Vue({
el: '#app',
data: {
//phina: phina,
//scene:,
},
beforeMount: function() {
//mounted() {
this.init()
},
methods: {
init() {
phina.globalize();
phina.main(function() {
var app = GameApp({
startLabel: 'splash',
scenes: [{
className: 'SplashScene',
label: 'splash',
nextLabel: 'title',
}, {
className: 'TitleScene',
label: 'title',
nextLabel: 'count',
}, {
className: 'CountScene',
label: 'count',
nextLabel: 'pause',
}, {
className: 'PauseScene',
label: 'pause',
nextLabel: 'result',
}, {
className: 'ResultScene',
label: 'result',
nextLabel: 'title',
}, ],
});
app.run();
});
},
}
});
#成果物
以上。