How to disable a wrapper tag for the template in Ember 2.4.*?

Hello guys! If I want to disable (or just change) a wrapper tag for the component I do the following:

export default Ember.Component.extend({
    tagName: '',
    ...

What is the best way to do the same thing with the template in Ember 2.4.*?