mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-28 08:28:18 +00:00
Merge pull request #73 from marcosmoura/bugfix/#69#70-remove-misused-v-once
Fix components not being updated inside v-once #69 #70
This commit is contained in:
commit
910aa13a2f
9 changed files with 9 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-card-actions" v-once>
|
||||
<div class="md-card-actions">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-card-content" v-once>
|
||||
<div class="md-card-content">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-card-header" v-once>
|
||||
<div class="md-card-header">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-card-header-text" v-once>
|
||||
<div class="md-card-header-text">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-card-media-actions" v-once>
|
||||
<div class="md-card-media-actions">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<hr class="md-divider" v-once>
|
||||
<hr class="md-divider">
|
||||
</template>
|
||||
|
||||
<style lang="scss" src="./mdDivider.scss"></style>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<i class="md-icon material-icons" v-once>
|
||||
<i class="md-icon material-icons">
|
||||
<slot></slot>
|
||||
</i>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<ul class="md-list" v-once>
|
||||
<ul class="md-list">
|
||||
<slot></slot>
|
||||
</ul>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="md-toolbar" v-once>
|
||||
<div class="md-toolbar">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in a new issue