How to select the vue js el using CSS attribute selector?

Solution:

It should work as shown below:

 

  var app = new Vue({
            el: '[data-identifier]',
            data: {
              msg:"hello" 
            },
            methods: {

            }
        });
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div data-identifier='app'>
   {{msg}}
</div>