what is the general idea of writing in vue?
what is the general idea of writing in vue?
A box height
clarify the following questions:
this should be controlled by layout and style
the simplest: a table, has no height, is divided into two columns, and then inserts content in each column, automatically realizing
the whole box height is filled according to the size on the right,
set max-height
learn about flex layout
http://www.ruanyifeng.com/blo.
like my blog space layout, use css flex layout to control it within one screen. Content overflow can be scrolled.
something like this.
places
// main->aside + section
main{display:flex;height:100vh;}
aside{width:200px;// height:100%;}
section{flex:1;height:100%;}
code is as follows: columns2: [ { title: , key: type , align: left , width:120 }, { title: , key: item , align: left , width:1000 }] ...
I have written a drag-and-drop component, which registers various events as shown in the following figure. The width and height of li are both 100% of the width and height given. the following error occasionally occurs when dragging, but it will no...