No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. huyang271
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 8
    • Best 0
    • Groups 0

    huyang271

    @huyang271

    -1
    Reputation
    77
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    huyang271 Follow

    Latest posts made by huyang271

    • RE: [v1] 'QRouteTab' component set 'disable' attribute,It didn't work.

      @max Sorry, i have no idea what happened, this is code copied from codepen:

      <div id=“q-app”>
        <q-toolbar class=“bg-white shadow-2 text-black common_header justify-between” style=“padding: 0 3px 0 15px;min-height: initial; height: 48px;”>
          <div class=“left-ico”>
            <img @click="$router.push(’/index’)" class="cursor-pointer gt-xs" src=“assets/app_nav_logo.png”>
          </div>
          <q-tabs shrink>
          <q-route-tab v-for=“nav in navs” :key=“nav.to” :to=“nav.to” :label=“nav.label” :disable=“nav.disable”/>
          </q-tabs>
        </q-toolbar>
      </div>
      
      js:
      new Vue({
      el: ‘#q-app’,
      data: function () {
      return {
      tab: ‘home’
      }
      },
      computed: {
      navs () {
      return [
      {
      to: ‘/index’,
      label: ‘首页’,
      disable: false
      },
      {
      to: ‘/company’,
      label: ‘公司’,
      disable: false
      },
      {
      to: ‘/product’,
      label: ‘产品’,
      disable: false
      },
      {
      to: ‘/about’,
      label: ‘关于’,
      disable: true
      }
      ]
      }
      },
      methods: {
      
      }
      })
      posted in Framework
      H
      huyang271
    • RE: How to fix columns with Quasar-framework?

      @metalsadman 😂 I started with Quasar v0.16…

      I read the document you sent about the table. It seems that there are some scrolling bugs. I hope quasar can solve this problem earlier.

      posted in Framework
      H
      huyang271
    • RE: How to fix columns with Quasar-framework?

      @rstoenescu Sorry, You can look at this example.Many Ant-design-style frameworks support fixed columns

      In my project, because there are so many table fields, I need to fix some of them. I’ve been expecting Quasar to support it for a long time.

      Thank you!

      posted in Framework
      H
      huyang271
    • How to fix columns with Quasar-framework?

      Fixed columns are a common scenario, but I don’t know how to use quasar to implement it. Has anybody achieved it yet?

      Thanks!!!

      posted in Framework
      H
      huyang271
    • RE: [Solved] How to make a q-table with multiple headers?

      @hawkeye64 hello my friend, your url is bad now. can you send it again,thank you sooooooooo much!

      posted in Framework
      H
      huyang271