Vue Split Pane を簡単に使ってみます。

お試し
今回は CDN で読み込むので、インストール等はありません。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet">
<title>vue-splitpane</title>
</head>
<body>
<div id="app">
<v-app>
<split-pane split="horizontal">
<div slot="paneL">
<v-card class="pa-2 blue text-center" tile>
<div class="white--text">AAA</div>
</v-card>
</div>
<div slot="paneR">
<v-card class="pa-2 blue text-center" tile>
<div class="white--text">BBB</div>
</v-card>
</div>
</split-pane>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-split-pane.min.js"></script>
<script>
new Vue({ vuetify: new Vuetify() }).$mount('#app');
</script>
</body>
</html>
これを HTML に貼り付けて起動させれば、簡単に試すことができます。