我正在使用Visual Studio Enterprise 2015& Resharper 10 for my javascript project。我正在为我的javascript函数编写文档。当我编写代码时,这些文档也可以帮助我理解智能感知。
-some_field something -another_field another_thing ...
但我找不到在javascript摘要/文档中创建新行的方法。
我试过了;
new Vue({
el: '#app',
template: '#sort',
data: function() {
return {
items: [
"http://placehold.it/200X300?text=image1",
"http://placehold.it/200X300?text=image2",
"http://placehold.it/200X300?text=image3",
"http://placehold.it/200X300?text=image4"
],
}
},
mounted: function() {
this.$nextTick(function () {
Sortable.create(document.getElementById('sortable'), {
animation: 200,
onUpdate: this.reorder.bind(this),
});
})
},
methods: {
reorder: function(event) {
var oldIndex = event.oldIndex,
newIndex = event.newIndex;
this.items.splice(newIndex, 0, this.items.splice(oldIndex, 1)[0]);
}
}
});
答案 0 :(得分:0)
尝试使用< br>为你的新系列。
My line one<br>
My line two
修改强>
对不起&lt; br&gt;用于eclipse文档。 对于Visual Studio,请尝试&lt; para&gt;
<para>My line one</para>
<para>My line two</para>