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 84d6861 commit 4cdd326Copy full SHA for 4cdd326
addon/components/paper-card-header-headline.hbs
@@ -0,0 +1,3 @@
1
+<span class="md-headline" ...attributes>
2
+ {{yield}}
3
+</span>
addon/components/paper-card-header-headline.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 PaperCardHeaderHeadline
9
* @extends Ember.Component
10
11
-export default Component.extend({
12
- tagName: 'span',
13
- classNames: ['md-headline']
14
-});
+export default class PaperCardHeaderHeadline extends Component {
+ tagName = '';
+}
0 commit comments