nativescript-vue-navigator icon indicating copy to clipboard operation
nativescript-vue-navigator copied to clipboard

BUG 3

Open ukik opened this issue 5 years ago • 2 comments

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

ukik avatar Jul 02 '20 04:07 ukik

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.

rigor789 avatar Jul 02 '20 17:07 rigor789

<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>

ukik avatar Jul 04 '20 01:07 ukik