3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Riot.js(v3)からVue.jsに移行する

Last updated at Posted at 2019-09-16

はじめに

初めて投稿させていただきます。

Riot.js(v3)を使用していたのですが以下の理由から移行を考えました。
・Riot.js(v4)へのバージョンアップで記法がVue.jsに寄る
・Nuxt.jsの静的サイトジェネレートによる初期表示の速度改善

Riot.jsのユーザーが多くないので需要があるかが不安ですが宜しくお願いいたします・・・

カスタムイベント

// Riot.js(v3)
this.on(EVENT_NAME, callback);
this.one(EVENT_NAME, callback);
this.trigger(EVENT_NAME, PROPS...);

// Vue.js
this.$on(EVENT_NAME, callback);
this.$once(EVENT_NAME, callback);
this.$emit(EVENT_NAME, PROPS...);

ライフサイクルフック

// Riot.js(v3)
this.on('mount', callback);

// Vue.js
this.$on('hook:mounted', callback);

DOMの更新後

// Riot.js(v3)
this.one('updated', callback);

// Vue.js
this.$nextTick(callback);
this.$nextTick().then(callback);

変数の更新

// Riot.js(v3)
this.valiable = newValue;
this.update();

// Vue.js
this.valiable = newValue; // updateされる

リストレンダリング

<!-- Riot.js(v3) -->
<virtual each={item, index in list}></virtual>

<!-- Vue.js -->
<template v-for="(item, index) in list"></template>

条件付きレンダリング

<!-- Riot.js(v3) -->
<virtual if={isVisible}></virtual>

<!-- Vue.js -->
<template v-if="isVisible"></template>

終わりに

間違っている点や感想などコメントしていただけると幸いです。
お読みいただきありがとうございました。

3
3
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?