0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

plunkerでvue その56

Posted at

概要

plunkerでvueやってみた。
vueファイルを使いたい。

参考にしたページ。

写真

image.png

サンプルコード

require({
  paths: {
    'Vue': 'https://unpkg.com/vue@2.5.11/dist/vue.min',
    'vue': 'https://unpkg.com/requirejs-vue@1.1.5/requirejs-vue'
  }
},
['Vue', 'vue'],
function(Vue, vue) {
  require(['vue!app'], function(theApp) {
    theApp.$mount('#app');
  });
});




成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?