improve docs

This commit is contained in:
Marcos Moura 2016-11-29 02:21:03 -02:00
parent d8abb2665c
commit d00992e3fc
2 changed files with 4 additions and 4 deletions

View file

@ -191,7 +191,7 @@
</template>
<style lang="scss" scoped>
p {
.phone-viewport p {
padding: 8px 16px;
}
</style>

View file

@ -231,7 +231,7 @@
v-model=&quot;nutrition[rowIndex].comment&quot;
v-if=&quot;columnIndex === &#039;comment&#039;&quot;&gt;&lt;/md-table-edit&gt;
&lt;span v-if=&quot;columnIndex !== &#039;comment&#039;&quot;&gt;{{ column }}&lt;/span&gt;
&lt;span v-if=&quot;columnIndex !== &#039;comment&#039;&quot;&gt;&#123;&#123; column &#125;&lt;/span&gt;
&lt;/md-table-cell&gt;
&lt;/md-table-row&gt;
&lt;/md-table-body&gt;
@ -361,7 +361,7 @@ export default {
&lt;md-table-body&gt;
&lt;md-table-row v-for=&quot;(row, rowIndex) in nutrition&quot; :key=&quot;rowIndex&quot; :md-item=&quot;row&quot; md-selection&gt;
&lt;md-table-cell v-for=&quot;(column, columnIndex) in row&quot; :key=&quot;columnIndex&quot; :md-numeric=&quot;columnIndex !== &#039;dessert&#039; &amp;&amp; columnIndex !== &#039;comment&#039; &amp;&amp; columnIndex !== &#039;type&#039;&quot;&gt;
&lt;span v-if=&quot;columnIndex === &#039;comment&#039;&quot;&gt;{{ column }}&lt;/span&gt;
&lt;span v-if=&quot;columnIndex === &#039;comment&#039;&quot;&gt;&#123;&#123; column &#125;&lt;/span&gt;
&lt;md-button class=&quot;md-icon-button&quot; v-if=&quot;columnIndex === &#039;comment&#039;&quot;&gt;
&lt;md-icon&gt;edit&lt;/md-icon&gt;
@ -378,7 +378,7 @@ export default {
&lt;md-option value=&quot;other&quot;&gt;Other&lt;/md-option&gt;
&lt;/md-select&gt;
&lt;span v-if=&quot;columnIndex !== &#039;type&#039; &amp;&amp; columnIndex !== &#039;comment&#039;&quot;&gt;{{ column }}&lt;/span&gt;
&lt;span v-if=&quot;columnIndex !== &#039;type&#039; &amp;&amp; columnIndex !== &#039;comment&#039;&quot;&gt;&#123;&#123; column &#125;&lt;/span&gt;
&lt;/md-table-cell&gt;
&lt;/md-table-row&gt;
&lt;/md-table-body&gt;