This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="row"> | |
<md-card class="col s4" md-title="Card title" md-action="true"> | |
<div> | |
This card has some actions. | |
</div> | |
<div slot="action"> | |
<a href="#">This is a link 1</a> | |
<a href="#">This is a link 2</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<md-card md-title="Card title" md-action="true"> | |
<div> | |
I am a very simple card. I am good at containing small bits of | |
information. I am convenient because I require little markup to | |
use effectively. | |
</div> | |
<div slot="action"> | |
<a href="#">This is a link</a> | |
<a href="#">This is a link</a> |