We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e5873a commit 385bcc7Copy full SHA for 385bcc7
addon/components/paper-card-header-title.hbs
@@ -0,0 +1,3 @@
1
+<span class="md-title" ...attributes>
2
+ {{yield}}
3
+</span>
addon/components/paper-card-header-title.js
@@ -1,4 +1,4 @@
-/* eslint-disable ember/no-classic-components, ember/require-tagless-components, prettier/prettier */
+/* eslint-disable ember/no-classic-components */
/**
* @module ember-paper
4
*/
@@ -8,7 +8,6 @@ import Component from '@ember/component';
8
* @class PaperCardHeaderTitle
9
* @extends Ember.Component
10
11
-export default Component.extend({
12
- tagName: 'span',
13
- classNames: ['md-title']
14
-});
+export default class PaperCardHeaderTitle extends Component {
+ tagName = '';
+}
0 commit comments