tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

vue-sample.vue (305B)


      1 <template>
      2  <div class="hello">
      3    <h1>{{ msg }}</h1>
      4  </div>
      5 </template>
      6 
      7 <script>
      8 var moduleVar = "data";
      9 
     10 export default {
     11  name: 'HelloWorld',
     12  data () {
     13    var fnVar = 4;
     14 
     15    return {
     16      msg: 'Welcome to Your Vue.js App'
     17    };
     18  }
     19 };
     20 </script>
     21 
     22 <style scoped>
     23 a {
     24  color: red;
     25 }
     26 </style>