nativescript-vue / nativescript-vue-navigator

A simple router for NativeScript-Vue, built on top of $navigateTo to simplify routing from within components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BUG 3

ukik opened this issue · comments

when I combine with global RadListView, after visited some page, app out of memory, become lagging, then closed by itself

Share your code - I cannot help without it. If the source is private, you can share it privately too, just invite me to the repo.

<template lang="html">
<Page padding="0" margin="0" actionBarHidden="true" backgroundColor="#f8f8f8">

  <RadSideDrawer
    ref="drawer"
    drawerLocation="Left"
    @drawerClosed="onClosedDrawerTriggered"
    :gesturesEnabled="gesturesEnabled"
  >
    <ContentView ~drawerContent backgroundColor="#ffffff">
      <Drawer_drawerContent />
    </ContentView>

    <!-- <Frame ~mainContent>
      <Page actionBarHidden="true">
        <Navigator ~mainContent defaultRoute="/auth"/>
      </Page>
    </Frame>
    -->    
    <Navigator ~mainContent defaultRoute="/auth"/>

  </RadSideDrawer>

</Page>
</template>

<script>

export default {
    mounted(){
      // this.openDrawer()
    }
};


</script>

<style lang="css"></style>