Created
March 31, 2017 20:56
-
-
Save hbrysiewicz/0dfa3403ead4ab1acc0a9d4cb97a6191 to your computer and use it in GitHub Desktop.
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
import Ember from 'ember' | |
const { | |
Component, | |
computed: { alias } | |
} = Ember | |
export default Component.extend({ | |
attributeBindings: [ | |
'data', | |
'type' | |
], | |
tagName: 'object', | |
type: 'image/svg+xml', | |
data: alias('model.url') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment