You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@weex.apache.org by "itfront (JIRA)" <ji...@apache.org> on 2018/06/06 01:46:00 UTC

[jira] [Created] (WEEX-438) vue-rx error: exception:Exception: TypeError: undefined is not an object (evaluating 'root.clearTimeout.bind')

itfront created WEEX-438:
----------------------------

             Summary: vue-rx error:  exception:Exception: TypeError: undefined is not an object (evaluating 'root.clearTimeout.bind')
                 Key: WEEX-438
                 URL: https://issues.apache.org/jira/browse/WEEX-438
             Project: Weex
          Issue Type: Bug
          Components: JSFM
            Reporter: itfront
            Assignee: Hanks Zhang


<template>
 <div>
 <span>Ageļ¼š\{{ age$ }}</span>
 </div>
</template>

<script>
 import Vue from 'vue'
 import VueRx from 'vue-rx'
 import Rx from 'rxjs/Rx'

Vue.use(VueRx, Rx)

module.exports = {
 subscriptions () {
 return {
 age$: Rx.Observable.of(23)
 .map(data => data),
 }
 }
 }
</script>



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)