How to load external html file in a template in VueJs

后端 未结 3 352
醉梦人生
醉梦人生 2021-01-04 03:15

I\'m new to vue js. I\'m just creating a simple project where I just include vuejs through CDN. not using node/npm or cli.

I keep all my html markup in single html

相关标签:
3条回答
  • 2021-01-04 03:22

    You cant. You must use async components - read guide here

    0 讨论(0)
  • 2021-01-04 03:35

    It's actually remarkably easy, but you need to keep something in mind. Behind the scenes, Vue converts your html template markup to code. That is, each element you see defined as HTML, gets converted to a javascript directive to create an element. The template is a convenience, so the single-file-component (vue file) is not something you'll be able to do without compiling with something like webpack. Instead, you'll need to use some other way of templating. Luckily there are other ways of defining templates that don't require pre-compiling and are useable in this scenario.

    1 - string/template literals

    example: template: '<div>{{myvar}}</div>'

    2 - render function

    0 讨论(0)
  • 2021-01-04 03:47

    Actually you can. This is kinda easy. Depends on your needs and situation. However, this code is NOT technically correct, however it will explain to you how it might work, gives you massive freedom and makes your original vue instance smaller.

    To make this work, you will need vue router (cdn is ok) and in this case axios or fetch (if you dont care about supporting older browsers).

    The only downfall in my opinion is that in content files you will need to add additional call parameter $parent . This will force vue to work.

    index

    <div id="app">
    
      <router-link v-for="route in this.$router.options.routes" :to="route.path" :key="route.path">{{ route.name }}</router-link>
    
      <section style="margin-top:50px;">
         <component :is="magician && { template: magician }" />
      </section>
    
    </div>
    
      <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
      <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
      <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
    
      <script>
         const viewer = axios.create({ baseURL: location.origin });
    
         const routes = [
           {"name":"Hello","slug":"hello","path":"/lol/index.html"},
           {"name":"Page One","slug":"page_one","path":"/lol/page-one.html"},
           {"name":"Page Two","slug":"page_two","path":"/lol/page-two.html"}
         ];
    
         const app = new Vue({
           router,
           el: '#app',
           data: {
              magician: null,
           },
           watch: {
              $route (to) {
                  this.loader(to.path);
              }
           },
           mounted() {
              this.loader(this.$router.currentRoute.path);
           },
           methods: {
              viewer(opt) {
                  return viewer.get(opt);
              },
              loader(to) {
                  to == '/lol/index.html' ? to = '/lol/hello.html' : to = to;
                  this.viewer(to).then((response) => {
                      this.magician = response.data;
                  }).catch(error => {
                      alert(error.response.data.message);
                  })
              },
              huehue(i) {
                alert(i);
              }
           }
         });
      </script>
    

    hello.html content

    <button v-on:click="$parent.huehue('this is great')">Button</button>
    

    page-one.html content

    <select>
       <option v-for="num in 20">{{ num }}</option>
    </select>
    

    page-two.html content

    // what ever you like
    

    router explanation

    To make this work perfectly, you will need to find a correct way to configure your htaccess to render everything if current page after first view is not index. Everything else should work fine.

    As you can see, if it is index, it will load hello content file.

    0 讨论(0)
提交回复
热议问题