You have to place the view outside the table:
create view v_kids_bike as
select kb.*, extract(day from (current_date - date_bought)) / 365.2425 as age
from kids_bike;
If you're using the SQL Server, then you can define the computed column in the create table like this:
Age as (SELECT datediff(day, DateBought, GETdate()) / 365.2425 ),
Sign up for the SQL Course to learn SQL in detail and to get certified.