侧面菜单未出现在Ionic 5智能手机上

时间:2020-05-23 16:44:47

标签: ionic5

第一次触摸Ionic。

使用以下命令创建APP。
ionic start test-app sidemenu

创建了sample1页面。
ionic g page sample1

将sample1添加到app.component.ts

public appPages = [
    {
      title: "Inbox",
      url: "/folder/Inbox",
      icon: "mail",
    },
    {
      title: "Outbox",
      url: "/folder/Outbox",
      icon: "paper-plane",
    },
    {
      title: "Favorites",
      url: "/folder/Favorites",
      icon: "heart",
    },
    {
      title: "Archived",
      url: "/folder/Archived",
      icon: "archive",
    },
    {
      title: "Trash",
      url: "/folder/Trash",
      icon: "trash",
    },
    {
      title: "Spam",
      url: "/folder/Spam",
      icon: "warning",
    },
    {
      title: "Sample",
      url: "/sample1",
      icon: "warning",
    },
  ];

我用ionic serve显示了该页面。
可以在PC上正常更改页面,但是在宽度较窄的设备(例如智能手机)上显示时,不会显示侧面菜单。
可能是什么原因?


显示侧边菜单。
enter image description here

侧边菜单不显示。
enter image description here


使用的版本

$ ionic --version
6.9.2

0 个答案:

没有答案
相关问题