question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

v-container fluid="false" not working

See original GitHub issue

I try to test v-container full-width or center by set fluid=“false” but not working. How to do it?

<v-app>
  <v-navigation-drawer></v-navigation-drawer>
  <v-toolbar></v-toolbar>
  <main>
    <v-container fluid="isFullWidth">
      <router-view></router-view>
    </v-container>
  </main>
  <v-footer></v-footer>
</v-app>
<script>
  export default {
    data () {
      return {
        isFullWidth: false,       
      }
    }
  }
</script>

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9 (8 by maintainers)

github_iconTop GitHub Comments

2reactions
johnleidercommented, Aug 10, 2017

use <v-container v-bind="{ fluid: isFullWidth } ">

1reaction
cawa-93commented, Aug 10, 2017

https://codepen.io/cawa-93/pen/zdzqrV?editors=1010#0

<v-container :class="{fluid: isFullWidth}">
Read more comments on GitHub >

github_iconTop Results From Across the Web

Bootstrap container-fluid isn't the whole width of the screen
The best way to do this in Bootstrap 4 is to add "px-0" to your "container-fluid" div like so: <div class="container-fluid px-0">...</div> This ......
Read more >
Overview - Bootstrap
Components and options for laying out your Bootstrap project, including wrapping containers, a powerful grid system, a flexible media object, and responsive ...
Read more >
Grid system - React-Bootstrap
Bootstrap's grid system uses a series of containers, rows, and columns to layout and align content. It's built with flexbox and is fully...
Read more >
Why do I get this error related to layout?! - Microsoft Q&A
... <img class="img-fluid" src="images/Header9.png" style="width: ... <NotFound>; <PageTitle>Not found</PageTitle> ... Incorrect stack order.
Read more >
How you've been getting the Bootstrap grid all wrong—and ...
The Problems With This ... $enable-grid-classes: false; ... This will give you the “full width fluid” container up until the “md” breakpoint ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found