No products in the cart.
Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
-
subhrajyoti-das
ParticipantLiquid files will by default parse
{{ }}
tags. So you need to change your templating mechanism. Below is updated code which works in Shopify Liquid files –<div id="app"> ${ message } </div> <script> var app = new Vue({ el: '#app', data: { message: 'Hello Vue!' }, delimiters: ['${', '}'] }) </script>
Basically, i have added delimeters which vue will check to find templates and they are different from Shopify Parsing which will result in shopify not parsing those holders. You can read up more about vue delimeters here – Link
- AuthorPosts
Viewing 1 post (of 1 total)