Skip to content

Commit

Permalink
docs: switch v-if with class for consistency (#2750)
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Sachs authored and posva committed Apr 28, 2019
1 parent e05631d commit a55ae44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/advanced/data-fetching.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Let's assume we have a `Post` component that needs to fetch the data for a post
``` html
<template>
<div class="post">
<div class="loading" v-if="loading">
<div v-if="loading" class="loading">
Loading...
</div>

Expand Down

0 comments on commit a55ae44

Please sign in to comment.