meta box not display data input in the textarea

Ok, you do have a typo :

add_action('save_post', 'vs_save_custom_meta');   

should be :

add_action('save_post', 'vs_save_excerpt_meta');   

So you meta box does not have a valid callback. Change this and it will work ^^